Searched defs:data (Results 1 - 25 of 85) sorted by relevance

1234

/bionic/libc/bionic/
H A Ddl_iterate_phdr_static.cpp38 int dl_iterate_phdr(int (*cb)(struct dl_phdr_info* info, size_t size, void* data), void* data) { argument
48 // code/data, plus optionally a VDSO.
58 int rc = cb(&exe_info, sizeof(exe_info), data);
76 return cb(&vdso_info, sizeof(vdso_info), data);
79 return cb(&exe_info, sizeof(exe_info), data);
H A Dptrace.cpp32 extern "C" long __ptrace(int req, pid_t pid, void* addr, void* data);
42 void* data; local
44 data = &peek_result;
46 data = va_arg(args, void*);
50 long result = __ptrace(req, pid, addr, data);
H A Ddebug_mapinfo.cpp72 char data[1024]; // Used to read lines as well as to construct the filename. local
73 snprintf(data, sizeof(data), "/proc/%d/maps", pid);
74 FILE* fp = fopen(data, "r");
76 while (fgets(data, sizeof(data), fp) != NULL) {
77 mapinfo_t* mi = parse_maps_line(data);
H A Dpthread_key.cpp55 * and its destructor, and will also clear the key data in the TLS area of
58 * were pointed to by these data fields (either before or after the call).
132 // Called from pthread_exit() to remove all TLS key data
134 // that have a non-NULL data value and a non-NULL destructor.
144 void* data = tls[key]; local
147 if (data != NULL && key_destructor != NULL) {
148 // we need to clear the key data now, this will prevent the
154 // releasing the corresponding data.
161 (*key_destructor)(data);
168 // If we didn't call any destructors, there is no need to check the TLS data agai
[all...]
H A Dgetentropy_linux.c88 static int getentropy_phdr(struct dl_phdr_info *info, size_t size, void *data);
345 getentropy_phdr(struct dl_phdr_info *info, size_t size, void *data) argument
347 SHA512_CTX *ctx = data;
/bionic/libc/kernel/uapi/linux/
H A Dbaycom.h32 } data; member in struct:baycom_ioctl
H A Deventpoll.h41 __u64 data; member in struct:epoll_event
H A Dblkpg.h30 void __user *data; member in struct:blkpg_ioctl_arg
H A Di2c-dev.h40 union i2c_smbus_data __user *data; member in struct:i2c_smbus_ioctl_data
H A Daio_abi.h39 __u64 data; member in struct:io_event
H A Db1lli.h24 unsigned char *data; member in struct:avmb1_t4file
H A Dconnector.h61 __u8 data[0]; member in struct:cn_msg
H A Ddm-log-userspace.h59 char data[0]; member in struct:dm_ulog_request
H A Dnet_dropmon.h37 __u64 data __attribute__((aligned(8))); member in struct:net_dm_config_entry
H A Dnfs4_mount.h25 const char __user * data; member in struct:nfs_string
H A Duvcvideo.h70 __u8 __user *data; member in struct:uvc_xu_control_query
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_connlimit.h42 struct xt_connlimit_data *data __attribute__((aligned(8))); member in struct:xt_connlimit_info
/bionic/libc/kernel/uapi/linux/usb/
H A Df_mtp.h35 void *data; member in struct:mtp_event
/bionic/tests/
H A Dsys_mman_test.cpp64 char* data = reinterpret_cast<char*>(map); local
65 ASSERT_STREQ(STRING_MSG, data);
101 // Create the file with three pages worth of data.
115 char* data = reinterpret_cast<char*>(map); local
116 ASSERT_STREQ(PAGE1_MSG, data);
123 data = reinterpret_cast<char*>(map);
124 ASSERT_STREQ(PAGE2_MSG, data);
125 ASSERT_STREQ(END_MSG, data+pagesize-sizeof(END_MSG));
137 // Create the file with three pages worth of data.
H A Dsys_socket_test.cpp45 static void* ConnectFn(void* data) { argument
46 bool (*callback_fn)(int) = reinterpret_cast<bool (*)(int)>(data);
/bionic/libc/dns/resolv/
H A Dres_mkquery.c121 const u_char *data, /* resource record data */
122 int datalen, /* length of data */
173 if (op == QUERY || data == NULL)
180 n = dn_comp((const char *)data, cp, ep - cp - RRFIXEDSZ,
212 memcpy(cp, data, (size_t)datalen);
117 res_nmkquery(res_state statp, int op, const char *dname, int class, int type, const u_char *data, int datalen, const u_char *newrr_in, u_char *buf, int buflen) argument
/bionic/libc/kernel/uapi/linux/netfilter_bridge/
H A Debt_ulog.h52 unsigned char data[0] __attribute__ member in struct:ebt_ulog_packet_msg
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dfindfp.c79 char *data; local
81 data = malloc(sizeof(*g) + ALIGNBYTES + n * sizeof(FILE)
83 if (data == NULL)
85 g = (struct glue *)data;
86 p = (FILE *)ALIGN(data + sizeof(*g));
88 (ALIGN(data + sizeof(*g)) + n * sizeof(FILE));
/bionic/libc/include/sys/
H A Depoll.h69 epoll_data_t data; member in struct:epoll_event
/bionic/libc/kernel/uapi/rdma/
H A Dib_user_mad.h75 __u64 data[0]; member in struct:ib_user_mad

Completed in 931 milliseconds

1234