rb_dlptr_new 82 ext/dl/dl.c val = rb_dlptr_new(v, 0, 0);
rb_dlptr_new 505 ext/dl/dl.c return rb_dlptr_new((void*)ptr,len,dlfree);
rb_dlptr_new 523 ext/dl/dl.c return ptr ? rb_dlptr_new(ptr, size, dlfree) : Qnil;
rb_dlptr_new 535 ext/dl/dl.c return fp ? rb_dlptr_new(fp, sizeof(FILE), 0) : Qnil;
rb_dlptr_new 556 ext/dl/dl.c return rb_dlptr_new(strdup(RSTRING(str)->ptr), RSTRING(str)->len, dlfree);
rb_dlptr_new 127 ext/dl/handle.c return rb_dlptr_new(dlhandle, sizeof(dlhandle), 0);
rb_dlptr_new 134 ext/dl/ptr.c return rb_dlptr_new(ptr, size, func);
rb_dlptr_new 256 ext/dl/ptr.c return rb_dlptr_new(*((void**)(data->ptr)),0,0);
rb_dlptr_new 265 ext/dl/ptr.c return rb_dlptr_new(&(data->ptr),0,0);
rb_dlptr_new 401 ext/dl/ptr.c rb_ary_push(ary, rb_dlptr_new(((void**)(data->ptr))[i],0,0));
rb_dlptr_new 405 ext/dl/ptr.c rb_dlptr_new(((void**)(data->ptr))[i],0,dlfree));
rb_dlptr_new 501 ext/dl/ptr.c return rb_dlptr_new((char *)ptr + num, size - num, 0);
rb_dlptr_new 513 ext/dl/ptr.c return rb_dlptr_new((char *)ptr - num, size + num, 0);
rb_dlptr_new 663 ext/dl/ptr.c elem = rb_dlptr_new(*((void**)ptr),0, 0);
rb_dlptr_new 700 ext/dl/ptr.c elem = rb_dlptr_new(*((void**)ptr), 0, 0);
rb_dlptr_new 81 ext/dl/sym.c return rb_dlptr_new((void*)func, 0, 0);
rb_dlptr_new 692 ext/dl/sym.c val = rb_dlptr_new((void*)(ANY2P(ret)), 0, 0);
rb_dlptr_new 695 ext/dl/sym.c val = rb_dlptr_new((void*)(ANY2P(ret)), 0, dlfree);
rb_dlptr_new 769 ext/dl/sym.c rb_ary_push(dvals, rb_dlptr_new((void*)(ANY2P(args[i])), 0, 0));
rb_dlptr_new 772 ext/dl/sym.c rb_ary_push(dvals, rb_dlptr_new((void*)ANY2P(args[i]), 0, 0));
rb_dlptr_new 818 ext/dl/sym.c return rb_dlptr_new(sym->func, sizeof(freefunc_t), 0);