Searched refs:data (Results 1 - 25 of 178) sorted by relevance

12345678

/bionic/libc/bionic/
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 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 Difaddrs.cpp70 void SetAddress(int family, const void* data, size_t byteCount) { argument
76 ifa.ifa_addr = CopyAddress(family, data, byteCount, &addr);
79 ifa.ifa_dstaddr = CopyAddress(family, data, byteCount, &ifa_ifu);
83 void SetBroadcastAddress(int family, const void* data, size_t byteCount) { argument
90 ifa.ifa_broadaddr = CopyAddress(family, data, byteCount, &ifa_ifu);
93 void SetLocalAddress(int family, const void* data, size_t byteCount) { argument
103 ifa.ifa_addr = CopyAddress(family, data, byteCount, &addr);
127 sockaddr* CopyAddress(int family, const void* data, size_t byteCount, sockaddr_storage* ss) { argument
133 memcpy(SockaddrBytes(family, ss), data, byteCount); local
136 if (family == AF_INET6 && (IN6_IS_ADDR_LINKLOCAL(data) || IN6_IS_ADDR_MC_LINKLOCA
[all...]
H A Dnet_if.cpp78 struct if_nameindex data; member in struct:if_list
90 if (names_too) free(it->data.if_name);
103 new_link->data.if_index = ifi->ifi_index;
110 new_link->data.if_name = strndup(reinterpret_cast<char*>(RTA_DATA(rta)), RTA_PAYLOAD(rta));
139 out->if_index = it->data.if_index;
140 out->if_name = it->data.if_name;
/bionic/libc/kernel/uapi/linux/
H A Dbaycom.h32 } data; member in struct:baycom_ioctl
H A Duserio.h31 __u8 data; member in struct:userio_cmd
H A Dioprio.h27 #define IOPRIO_PRIO_VALUE(class,data) (((class) << IOPRIO_CLASS_SHIFT) | data)
H A Dblkpg.h30 void __user * data; member in struct:blkpg_ioctl_arg
H A Deventpoll.h41 __u64 data; member in struct:epoll_event
H A Dfirewire-cdev.h61 __u32 data[0]; member in struct:fw_cdev_event_response
72 __u32 data[0]; member in struct:fw_cdev_event_request
89 __u32 data[0]; member in struct:fw_cdev_event_request2
121 __u32 data[0]; member in struct:fw_cdev_event_phy_packet
185 __u64 data; member in struct:fw_cdev_send_request
192 __u64 data; member in struct:fw_cdev_send_response
219 __u64 data; member in struct:fw_cdev_add_descriptor
262 __u64 data; member in struct:fw_cdev_queue_iso
316 __u64 data; member in struct:fw_cdev_send_stream_packet
324 __u32 data[ member in struct:fw_cdev_send_phy_packet
[all...]
H A Duhid.h81 __u8 data[UHID_DATA_MAX]; member in struct:uhid_input2_req
85 __u8 data[UHID_DATA_MAX]; member in struct:uhid_output_req
101 __u8 data[UHID_DATA_MAX]; member in struct:uhid_get_report_reply_req
110 __u8 data[UHID_DATA_MAX]; member in struct:uhid_set_report_req
142 __u8 data[UHID_DATA_MAX]; member in struct:uhid_input_req
164 __u8 data[UHID_DATA_MAX]; member in struct:uhid_feature_answer_req
H A Db1lli.h24 unsigned char * data; member in struct:avmb1_t4file
H A Ddm-log-userspace.h59 char data[0]; member in struct:dm_ulog_request
/bionic/tests/
H A Dmath_data_test.h148 // Runs through the array 'data' applying 'f' to each of the input values
152 void DoMathDataTest(data_1_1_t<RT, T> (&data)[N], RT f(T)) {
157 data[i].expected, f(data[i].input)) << "Failed on element " << i;
161 // Runs through the array 'data' applying 'f' to each of the input values
165 void DoMathDataTest(data_int_1_t<T> (&data)[N], int f(T)) {
168 EXPECT_EQ(data[i].expected, f(data[i].input)) << "Failed on element " << i;
172 // Runs through the array 'data' applying 'f' to each of the input values
176 void DoMathDataTest(data_long_1_t<T> (&data)[
[all...]
H A Dthread_local_test.cpp41 int *data = reinterpret_cast<int*>(p); local
43 *data = shared_var;
48 int *data = reinterpret_cast<int*>(p); local
50 *data = local_var;
56 int data; local
57 int error = pthread_create(&t, nullptr, foo, &data);
60 return error ? error : data;
121 int *data = reinterpret_cast<int*>(p); local
123 *data = shared_triangle[1].y;
128 int *data local
[all...]
/bionic/libc/malloc_debug/
H A DGuardData.cpp45 memset(cmp_mem_.data(), init_value, cmp_mem_.size());
48 void GuardData::LogFailure(const Header* header, const void* pointer, const void* data) { argument
56 const uint8_t* expected = cmp_mem_.data();
57 int pointer_idx = reinterpret_cast<uintptr_t>(data) - reinterpret_cast<uintptr_t>(pointer);
58 const uint8_t* real = reinterpret_cast<const uint8_t*>(data);
67 size_t frame_num = backtrace_get(frames.data(), frames.size());
69 backtrace_log(frames.data(), frames.size());
77 memset(cmp_mem_.data(), config.front_guard_value, cmp_mem_.size());
H A DGuardData.h49 bool Valid(void* data) { return memcmp(data, cmp_mem_.data(), cmp_mem_.size()) == 0; } argument
51 void LogFailure(const Header* header, const void* pointer, const void* data);
H A DTrackData.cpp132 uint8_t* data = *info; local
136 memcpy(data, &header->size, sizeof(size_t));
137 memcpy(&data[sizeof(size_t)], &back_header->num_frames, sizeof(size_t));
138 memcpy(&data[2 * sizeof(size_t)], &back_header->frames[0],
143 data += *info_size;
/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/linker/
H A Dlinker_mapped_file_fragment.h30 void* data() const { return data_; } function in class:MappedFileFragment
/bionic/libc/kernel/uapi/linux/usb/
H A Df_mtp.h35 void * data; member in struct:mtp_event
/bionic/tools/relocation_packer/src/
H A Delf_file.cc8 // want to avoid fixing DWARF cfi data and relative relocation addresses.
10 // while preserving code/data vaddrs location.
48 // Get section data. Checks that the section has exactly one data entry,
49 // so that the section size and the data size are the same. True in
51 // by ensuring that a call to elf_getdata(section, data) returns NULL as
52 // the next data entry.
54 Elf_Data* data = elf_getdata(section, NULL); local
55 CHECK(data && elf_getdata(section, data)
64 Elf_Data* data = GetSectionData(section); local
122 VerboseLogSectionData(const Elf_Data* data) argument
229 Elf_Data* data = NULL; local
507 Elf_Data* data = GetSectionData(dynamic_section); local
595 Elf_Data* data = GetSectionData(section); local
686 Elf_Data* data = GetSectionData(relocations_section_); local
796 Elf_Data* data = GetSectionData(dynamic_section_); local
836 Elf_Data* data = GetSectionData(relocations_section_); local
875 Elf_Data* data = GetSectionData(relocations_section_); local
[all...]
/bionic/libc/arch-arm64/denver64/bionic/
H A Dmemcpy.S60 .data
/bionic/libc/arch-arm64/generic/bionic/
H A Dmemcpy.S60 .data

Completed in 6173 milliseconds

12345678