Searched refs:data (Results 76 - 100 of 178) sorted by relevance

12345678

/bionic/libc/malloc_debug/
H A DMapData.cpp120 while (fgets(buffer.data(), buffer.size(), fp) != nullptr) {
121 MapEntry* entry = parse_line(buffer.data());
/bionic/libc/bionic/
H A Dpthread_internal.h46 void* data; member in class:pthread_key_data_t
H A Dlibc_logging.cpp78 void Send(const char* data, int len) { argument
80 len = strlen(data);
93 memcpy(pos_, data, avail);
113 void Send(const char* data, int len) { argument
115 len = strlen(data);
121 int rc = TEMP_FAILURE_RETRY(write(fd_, data, len));
125 data += rc;
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/rdma/
H A Dib_user_mad.h75 __u64 data[0]; member in struct:ib_user_mad
/bionic/linker/
H A Ddlfcn.cpp125 int dl_iterate_phdr(int (*cb)(dl_phdr_info* info, size_t size, void* data), void* data) { argument
127 return do_dl_iterate_phdr(cb, data);
/bionic/tests/
H A Dpthread_test.cpp312 TestBug37410 data; local
313 data.main_thread = pthread_self();
314 ASSERT_EQ(0, pthread_mutex_init(&data.mutex, NULL));
315 ASSERT_EQ(0, pthread_mutex_lock(&data.mutex));
318 ASSERT_EQ(0, pthread_create(&t, NULL, TestBug37410::thread_fn, reinterpret_cast<void*>(&data)));
321 ASSERT_EQ(0, pthread_mutex_lock(&data.mutex));
322 ASSERT_EQ(0, pthread_mutex_unlock(&data.mutex));
330 TestBug37410* data = reinterpret_cast<TestBug37410*>(arg); local
333 pthread_mutex_unlock(&data->mutex);
336 pthread_join(data
1837 BarrierTestHelperData* data; member in struct:BarrierTestHelperArg
[all...]
H A Dsys_socket_test.cpp32 static void* ConnectFn(void* data) { argument
33 ConnectData* pdata = reinterpret_cast<ConnectData*>(data);
/bionic/libc/kernel/uapi/linux/
H A Dcoda.h317 char * data; member in struct:coda_ioctl_in
324 caddr_t data; member in struct:coda_ioctl_out
467 caddr_t data; member in struct:coda_readlink_out
H A Dhdreg.h45 unsigned data : 1; member in struct:ide_reg_valid_s::__anon373
95 __u8 data; member in struct:hd_drive_task_hdr
107 __u8 data; member in struct:hd_drive_hob_hdr
H A Ddm-ioctl.h44 char data[7]; member in struct:dm_ioctl
H A Dicmpv6.h134 __u32 data[8]; member in struct:icmp6_filter
/bionic/libc/kernel/uapi/drm/
H A Dnouveau_drm.h82 uint32_t data; member in struct:drm_nouveau_gem_pushbuf_reloc
/bionic/libc/dns/resolv/
H A Dres_data.c172 const u_char *data, /* resource record data */
173 int datalen, /* length of data */
183 data, datalen,
169 res_mkquery(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/sound/
H A Dasoc.h112 char data[0]; member in struct:snd_soc_tplg_private
126 __le32 data[SND_SOC_TPLG_TLV_SIZE]; member in union:snd_soc_tplg_ctl_tlv::__anon972
/bionic/libc/stdio/
H A Dstdio.cpp107 char* data = new char[sizeof(glue) + ALIGNBYTES + n * sizeof(FILE) + n * sizeof(__sfileext)]; local
108 if (data == nullptr) return nullptr;
110 glue* g = reinterpret_cast<glue*>(data);
111 FILE* p = reinterpret_cast<FILE*>(ALIGN(data + sizeof(*g)));
112 __sfileext* pext = reinterpret_cast<__sfileext*>(ALIGN(data + sizeof(*g)) + n * sizeof(FILE));
491 // Flush unwritten data and attempt the seek.
496 // Success: clear EOF indicator and discard ungetc() data.
/bionic/libc/arch-arm/cortex-a15/bionic/
H A D__strcat_chk_common.S39 // do a memcpy of the data.
210 .data
H A D__strcpy_chk_common.S37 // Get the length of the source string first, then do a memcpy of the data
171 .data
H A Dmemset.S189 .data
/bionic/libc/arch-arm/cortex-a7/bionic/
H A Dmemset.S178 .data
/bionic/libc/arch-arm/cortex-a9/bionic/
H A D__strcat_chk.S39 // do a memcpy of the data.
218 .data
H A D__strcpy_chk.S37 // Get the length of the source string first, then do a memcpy of the data
183 .data
H A Dmemset.S180 .data
/bionic/libc/arch-arm/denver/bionic/
H A D__strcat_chk.S39 // do a memcpy of the data.
214 .data
H A D__strcpy_chk.S37 // Get the length of the source string first, then do a memcpy of the data
178 .data

Completed in 1657 milliseconds

12345678