Searched defs:handle (Results 1 - 17 of 17) sorted by relevance

/bionic/libc/kernel/common/linux/
H A Dtegra_avp.h32 unsigned long handle; member in struct:tegra_avp_lib
H A Domap_ion.h29 struct ion_handle *handle; member in struct:omap_ion_tiler_alloc_data
H A Dion.h45 struct ion_handle *handle; member in struct:ion_allocation_data
49 struct ion_handle *handle; member in struct:ion_fd_data
54 struct ion_handle *handle; member in struct:ion_handle_data
H A Dbinder.h45 signed long handle; member in union:flat_binder_object::__anon271
84 size_t handle; member in union:binder_transaction_data::__anon272
H A Dtelephony.h50 int handle; member in struct:phone_capability
/bionic/libdl/
H A Ddltest.c124 void *handle, *symbol; local
128 handle = libname ? dlopen(libname, RTLD_NOW) : RTLD_DEFAULT;
133 symbol = dlsym(handle, symname);
138 dlclose(handle);
H A Dlibdl.c23 void *dlsym(void *handle, const char *symbol) { return 0; } argument
25 int dlclose(void *handle) { return 0; } argument
/bionic/libc/netbsd/nameser/
H A Dns_parse.c74 int ns_msg_getflag(ns_msg handle, int flag) { argument
75 return((u_int32_t)((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift);
103 ns_initparse(const u_char *msg, int msglen, ns_msg *handle) { argument
107 memset(handle, 0x5e, sizeof *handle);
108 handle->_msg = msg;
109 handle->_eom = eom;
112 NS_GET16(handle->_id, msg);
115 NS_GET16(handle->_flags, msg);
119 NS_GET16(handle
140 ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) argument
[all...]
H A Dns_print.c86 * ns_sprintrr(handle, rr, name_ctx, origin, buf, buflen)
92 ns_sprintrr(const ns_msg *handle, const ns_rr *rr, argument
98 n = ns_sprintrrf(ns_msg_base(*handle), ns_msg_size(*handle),
775 /* XXX need to handle \nnn form. */
/bionic/tests/
H A Ddlfcn_test.cpp92 // NULL handle.
96 ASSERT_SUBSTR("dlsym library handle is null", dlerror());
198 void* handle = dlopen("no-elf-hash-table-library.so", RTLD_NOW); local
199 ASSERT_TRUE(handle == NULL);
207 void* handle; local
211 handle = dlopen(NULL, 0);
212 ASSERT_TRUE(handle == NULL);
216 handle = dlopen(NULL, 0xffffffff);
217 ASSERT_TRUE(handle == NULL);
221 handle
[all...]
/bionic/linker/
H A Ddlfcn.cpp73 void* dlsym(void* handle, const char* symbol) { argument
76 if (handle == NULL) {
77 __bionic_format_dlerror("dlsym library handle is null", NULL);
87 if (handle == RTLD_DEFAULT) {
89 } else if (handle == RTLD_NEXT) {
98 found = reinterpret_cast<soinfo*>(handle);
143 int dlclose(void* handle) { argument
145 return do_dlclose(reinterpret_cast<soinfo*>(handle));
/bionic/libthread_db/
H A Dlibthread_db.c80 _event_getmsg_helper(td_thrhandle_t const * handle, void * bkpt_addr) argument
88 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)48 /* eip */, NULL);
98 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)4 /* ecx */, NULL);
103 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)60 /* r15/pc */, NULL);
108 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)0 /* r0 */, NULL);
113 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(64*4) /* pc */, NULL);
117 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(4*4) /* a0 */, NULL);
161 td_thr_get_info(td_thrhandle_t const * handle, td_thrinfo_t * info) argument
163 info->ti_tid = handle->tid;
164 info->ti_lid = handle
174 td_thr_event_enable(td_thrhandle_t const * handle, td_event_e event) argument
223 td_thrhandle_t handle; local
[all...]
/bionic/libc/include/
H A Dnsswitch.h210 void *handle; /* handle from dlopen() */ member in struct:__anon32
/bionic/libc/private/
H A Dnsswitch.h211 void *handle; /* handle from dlopen() */ member in struct:__anon650
/bionic/libc/kernel/common/linux/sunrpc/
H A Dsvc.h102 struct cache_deferred_req handle; member in struct:svc_deferred_req
/bionic/libc/netbsd/resolv/
H A Dres_debug.c160 ns_msg *handle, ns_sect section,
182 opcode = (ns_opcode) ns_msg_getflag(*handle, ns_f_opcode);
185 if (ns_parserr(handle, section, rrnum, &rr)) {
208 n = ns_sprintrr(handle, &rr, NULL, NULL,
243 ns_msg handle; local
247 if (ns_initparse(msg, len, &handle) < 0) {
251 opcode = ns_msg_getflag(handle, ns_f_opcode);
252 rcode = ns_msg_getflag(handle, ns_f_rcode);
253 id = ns_msg_id(handle);
254 qdcount = ns_msg_count(handle, ns_s_q
159 do_section(const res_state statp, ns_msg *handle, ns_sect section, int pflag, FILE *file) argument
[all...]
H A Dres_cache.c77 * - the client calls _resolv_cache_get() to obtain a handle to the cache.
1025 answer_getNegativeTTL(ns_msg handle) { argument
1030 nscount = ns_msg_count(handle, ns_s_ns);
1032 if ((ns_parserr(&handle, ns_s_ns, n, &rr) == 0) && (ns_rr_type(rr) == ns_t_soa)) {
1081 ns_msg handle; local
1087 if (ns_initparse(answer, answerlen, &handle) >= 0) {
1089 ancount = ns_msg_count(handle, ns_s_an);
1093 result = answer_getNegativeTTL(handle);
1096 if (ns_parserr(&handle, ns_s_an, n, &rr) == 0) {

Completed in 335 milliseconds