Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ri /
system /
Fiddle /
Pointer /
Delete
Unzip
Name
Size
Permission
Date
Action
LibC
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
%2b%40-i.ri
486
B
-rw-r--r--
2026-04-07 16:51
%2b-i.ri
381
B
-rw-r--r--
2026-04-07 16:51
%2d%40-i.ri
488
B
-rw-r--r--
2026-04-07 16:51
%2d-i.ri
383
B
-rw-r--r--
2026-04-07 16:51
%3c%3d%3e-i.ri
480
B
-rw-r--r--
2026-04-07 16:51
%3d%3d-i.ri
398
B
-rw-r--r--
2026-04-07 16:51
%5b%5d%3d-i.ri
575
B
-rw-r--r--
2026-04-07 16:51
%5b%5d-c.ri
455
B
-rw-r--r--
2026-04-07 16:51
%5b%5d-i.ri
523
B
-rw-r--r--
2026-04-07 16:51
call_free-i.ri
467
B
-rw-r--r--
2026-04-07 16:51
cdesc-Pointer.ri
1.19
KB
-rw-r--r--
2026-04-07 16:51
eql%3f-i.ri
402
B
-rw-r--r--
2026-04-07 16:51
ffi_ptr-i.ri
257
B
-rw-r--r--
2026-04-07 16:51
free%3d-i.ri
414
B
-rw-r--r--
2026-04-07 16:51
free-i.ri
483
B
-rw-r--r--
2026-04-07 16:51
freed%3f-i.ri
384
B
-rw-r--r--
2026-04-07 16:51
from_native-c.ri
280
B
-rw-r--r--
2026-04-07 16:51
inspect-i.ri
434
B
-rw-r--r--
2026-04-07 16:51
malloc-c.ri
1.95
KB
-rw-r--r--
2026-04-07 16:51
new-c.ri
630
B
-rw-r--r--
2026-04-07 16:51
null%3f-i.ri
361
B
-rw-r--r--
2026-04-07 16:51
ptr-i.ri
488
B
-rw-r--r--
2026-04-07 16:51
read-c.ri
429
B
-rw-r--r--
2026-04-07 16:51
ref-i.ri
490
B
-rw-r--r--
2026-04-07 16:51
size%3d-i.ri
362
B
-rw-r--r--
2026-04-07 16:51
size-i.ri
347
B
-rw-r--r--
2026-04-07 16:51
to_i-i.ri
467
B
-rw-r--r--
2026-04-07 16:51
to_int-i.ri
409
B
-rw-r--r--
2026-04-07 16:51
to_native-c.ri
276
B
-rw-r--r--
2026-04-07 16:51
to_ptr-c.ri
565
B
-rw-r--r--
2026-04-07 16:51
to_ptr-i.ri
259
B
-rw-r--r--
2026-04-07 16:51
to_s-i.ri
312
B
-rw-r--r--
2026-04-07 16:51
to_str-i.ri
747
B
-rw-r--r--
2026-04-07 16:51
to_value-i.ri
361
B
-rw-r--r--
2026-04-07 16:51
write-c.ri
393
B
-rw-r--r--
2026-04-07 16:51
Save
Rename
U:RDoc::AnyMethod[iI"malloc:ETI"Fiddle::Pointer::malloc;TT:publico:RDoc::Markup::Document:@parts[ S:RDoc::Markup::Heading: leveli: textI" Examples;To:RDoc::Markup::BlankLine o:RDoc::Markup::Verbatim; [I"P# Automatically freeing the pointer when the block is exited - recommended ;TI"BFiddle::Pointer.malloc(size, Fiddle::RUBY_FREE) do |pointer| ;TI" ... ;TI" end ;TI" ;TI"G# Manually freeing but relying on the garbage collector otherwise ;TI"?pointer = Fiddle::Pointer.malloc(size, Fiddle::RUBY_FREE) ;TI" ... ;TI"pointer.call_free ;TI" ;TI"n# Relying on the garbage collector - may lead to unlimited memory allocated before freeing any, but safe ;TI"?pointer = Fiddle::Pointer.malloc(size, Fiddle::RUBY_FREE) ;TI" ... ;TI" ;TI"# Only manually freeing ;TI",pointer = Fiddle::Pointer.malloc(size) ;TI"begin ;TI" ... ;TI"ensure ;TI" Fiddle.free pointer ;TI" end ;TI" ;TI"n# No free function and no call to free - the native memory will leak if the pointer is garbage collected ;TI",pointer = Fiddle::Pointer.malloc(size) ;TI" ... ;T:@format0o:RDoc::Markup::Paragraph; [I"GAllocate +size+ bytes of memory and associate it with an optional ;TI"+freefunc+.;T@ o;; [I"QIf a block is supplied, the pointer will be yielded to the block instead of ;TI"Kbeing returned, and the return value of the block will be returned. A ;TI"/+freefunc+ must be supplied if a block is.;T@ o;; [ I"MIf a +freefunc+ is supplied it will be called once, when the pointer is ;TI"Kgarbage collected or when the block is left if a block is supplied or ;TI"Rwhen the user calls +call_free+, whichever happens first. +freefunc+ must be ;TI"Lan address pointing to a function or an instance of +Fiddle::Function+.;T: @fileI"ext/fiddle/pointer.c;T:0@omit_headings_from_table_of_contents_below00I"pointer;T[ I"(size, free = nil);TI")ext/fiddle/lib/fiddle/ffi_backend.rb;TFI"Pointer;TcRDoc::NormalClass00