Searched defs:data (Results 1 - 25 of 89) 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);
81 return cb(&vdso_info, sizeof(vdso_info), data);
84 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 Dpthread_key.cpp47 // reused for a new key, pthread_getspecific will not return stale data.
72 // all keys that have a non-NULL data value and a non-NULL destructor.
81 if (SeqOfKeyInUse(seq) && seq == key_data[i].seq && key_data[i].data != NULL) {
99 // We need to clear the key data now, this will prevent the destructor (or a later one)
102 // function is responsible for manually releasing the corresponding data.
103 void* data = key_data[i].data; variable
104 key_data[i].data = NULL;
106 (*key_destructor)(data); variable
134 // responsibility of the caller to properly dispose of the corresponding data
[all...]
H A Ddebug_mapinfo.cpp89 char data[1024]; // Used to read lines as well as to construct the filename. local
90 snprintf(data, sizeof(data), "/proc/%d/maps", pid);
91 FILE* fp = fopen(data, "re");
93 while (fgets(data, sizeof(data), fp) != NULL) {
94 mapinfo_t* mi = parse_maps_line(data);
H A Dpthread_internal.h44 void* data; member in struct:pthread_key_data_t
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.h38 __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.cpp32 static void* ConnectFn(void* data) { argument
33 ConnectData* pdata = reinterpret_cast<ConnectData*>(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__((aligned(__alignof__(struct ebt_ulog_info)))); member in struct:ebt_ulog_packet_msg
/bionic/libc/stdio/
H A Dfindfp.c80 char *data; local
82 data = malloc(sizeof(*g) + ALIGNBYTES + n * sizeof(FILE)
84 if (data == NULL)
86 g = (struct glue *)data;
87 p = (FILE *)ALIGN(data + sizeof(*g));
89 (ALIGN(data + sizeof(*g)) + n * sizeof(FILE));
/bionic/libc/include/sys/
H A Depoll.h69 epoll_data_t data; member in struct:epoll_event

Completed in 577 milliseconds

1234