Searched refs:handle (Results 1 - 22 of 22) sorted by last modified time

/bionic/libc/include/
H A Ddlfcn.h47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
H A Dnsswitch.h210 void *handle; /* handle from dlopen() */ member in struct:__anon32
/bionic/libc/kernel/common/linux/
H A Dbinder.h45 signed long handle; member in union:flat_binder_object::__anon237
84 size_t handle; member in union:binder_transaction_data::__anon238
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 Dmsm_ion.h86 struct ion_handle *handle; member in struct:ion_flush_data
95 struct ion_handle *handle; member in struct:ion_flag_data
H A Dmsm_kgsl.h355 int handle; member in struct:kgsl_timestamp_event_genlock
H A Domap_ion.h29 struct ion_handle *handle; member in struct:omap_ion_tiler_alloc_data
H A Dtegra_avp.h32 unsigned long handle; member in struct:tegra_avp_lib
H A Dtelephony.h50 int handle; member in struct:phone_capability
/bionic/libc/kernel/common/linux/sunrpc/
H A Dsvc.h102 struct cache_deferred_req handle; member in struct:svc_deferred_req
/bionic/libc/kernel/common/media/
H A Dmsm_camera.h216 uint32_t handle; member in struct:msm_pp_frame
670 struct ion_handle *handle; member in struct:msm_stats_buf
1859 #define CLR_IMG_MODE(handle) (handle &= 0xFF00FFFF)
1860 #define SET_IMG_MODE(handle, data) (handle |= ((0x1 << 23) | ((data & 0x7F) << 16)))
1861 #define GET_IMG_MODE(handle) ((handle & 0x800000) ? ((handle & 0x7F0000) >> 16) : 0xFF)
1862 #define CLR_MCTLPP_INST_IDX(handle) (handl
[all...]
/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/libc/netbsd/resolv/
H A Dres_cache.c76 * - the client calls _resolv_cache_get() to obtain a handle to the cache.
1035 ns_msg handle; local
1041 if (ns_initparse(answer, answerlen, &handle) >= 0) {
1043 ancount = ns_msg_count(handle, ns_s_an);
1045 if (ns_parserr(&handle, ns_s_an, n, &rr) == 0) {
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...]
/bionic/libc/private/
H A Darpa_nameser.h106 * This is a message handle. It is caller allocated and has no dynamic data.
125 #define ns_msg_id(handle) ((handle)._id + 0)
126 #define ns_msg_base(handle) ((handle)._msg + 0)
127 #define ns_msg_end(handle) ((handle)._eom + 0)
128 #define ns_msg_size(handle) ((size_t)((handle)._eom - (handle)
[all...]
H A Dnsswitch.h211 void *handle; /* handle from dlopen() */ member in struct:__anon668
/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/libthread_db/include/
H A Dthread_db.h143 extern td_err_e td_thr_get_info(td_thrhandle_t const * handle,
146 extern td_err_e td_thr_event_enable(td_thrhandle_t const * handle,
152 extern td_err_e td_thr_event_enable(td_thrhandle_t const * handle, td_event_e event);
154 extern td_err_e td_thr_get_info(td_thrhandle_t const * handle, td_thrinfo_t * info);
/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/linker/
H A Ddlfcn.c36 [DL_ERR_INVALID_LIBRARY_HANDLE] = "Invalid library handle",
77 void *dlsym(void *handle, const char *symbol) argument
85 if(unlikely(handle == 0)) {
94 if(handle == RTLD_DEFAULT) {
96 } else if(handle == RTLD_NEXT) {
105 found = (soinfo*)handle;
159 int dlclose(void* handle) { argument
161 int result = soinfo_unload((soinfo*)handle);

Completed in 501 milliseconds