Searched defs:info (Results 1 - 25 of 44) sorted by relevance

12

/bionic/libc/bionic/
H A Dsigtimedwait.cpp35 int sigtimedwait(const sigset_t* set, siginfo_t* info, const timespec* timeout) { argument
37 return __rt_sigtimedwait(sigset.get(), info, timeout, sizeof(sigset));
H A Dsigwaitinfo.cpp31 int sigwaitinfo(const sigset_t* set, siginfo_t* info) { argument
32 return sigtimedwait(set, info, NULL);
H A Dsigqueue.cpp37 siginfo_t info; local
38 memset(&info, 0, sizeof(siginfo_t));
39 info.si_signo = signo;
40 info.si_code = SI_QUEUE;
41 info.si_pid = getpid();
42 info.si_uid = getuid();
43 info.si_value = value;
45 return ___rt_sigqueueinfo(pid, signo, &info);
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
H A Dwait.cpp32 extern "C" int __waitid(idtype_t which, id_t id, siginfo_t* info, int options, struct rusage* ru);
42 int waitid(idtype_t which, id_t id, siginfo_t* info, int options) { argument
44 return __waitid(which, id, info, options, NULL);
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
349 SHA512_Update(ctx, &info->dlpi_addr, sizeof (info->dlpi_addr));
/bionic/tools/relocation_packer/src/
H A Ddebug_unittest.cc14 std::ostringstream info; local
16 Logger::SetStreams(&info, &error);
22 EXPECT_EQ("INFO: INFO log message\n", info.str());
30 std::ostringstream info; local
32 Logger::SetStreams(&info, &error);
42 EXPECT_EQ("INFO: INFO log message\n", info.str());
50 std::ostringstream info; local
52 Logger::SetStreams(&info, &error);
58 EXPECT_EQ("", info.str());
68 "INFO: VLOG 1 INFO log message\n", info
75 std::ostringstream info; local
[all...]
H A Ddelta_encoder_unittest.cc15 uint32_t info,
20 relocation.r_info = info;
27 uint32_t info,
31 relocation.r_info == info &&
65 EXPECT_EQ(11U, packed[ndx++]); // info
69 // same info
83 EXPECT_EQ(11U, packed[ndx++]); // info
89 // different info
112 EXPECT_EQ(11U, packed[ndx++]); // info
124 EXPECT_EQ(41U, packed[ndx++]); // info
14 AddRelocation(uint32_t addr, uint32_t info, int32_t addend, std::vector<T>* relocations) argument
26 CheckRelocation(uint32_t addr, uint32_t info, int32_t addend, const T& relocation) argument
[all...]
H A Dpacker_unittest.cc15 typename ELF::Xword info,
20 relocation.r_info = info;
28 typename ELF::Xword info,
32 relocation.r_info == info &&
14 AddRelocation(typename ELF::Addr addr, typename ELF::Xword info, typename ELF::Sxword addend, std::vector<typename ELF::Rela>* relocations) argument
27 CheckRelocation(typename ELF::Addr addr, typename ELF::Xword info, typename ELF::Sxword addend, const typename ELF::Rela& relocation) argument
H A Delf_traits.h39 static inline Word elf_r_type(Word info) { return ELF32_R_TYPE(info); } argument
40 static inline int elf_st_type(uint8_t info) { return ELF32_ST_TYPE(info); } argument
41 static inline Word elf_r_sym(Word info) { return ELF32_R_SYM(info); } argument
63 static inline Xword elf_r_type(Xword info) { return ELF64_R_TYPE(info); } argument
64 static inline int elf_st_type(uint8_t info) { return ELF64_ST_TYPE(info); } argument
65 elf_r_sym(Xword info) argument
[all...]
H A Ddelta_encoder.cc128 ElfAddr info = 0; local
142 info = packed[ndx++];
150 // now read not grouped info
159 info = packed[ndx++];
169 reloc.r_info = info;
/bionic/libc/malloc_debug/
H A DTrackData.cpp113 void TrackData::GetInfo(DebugData& debug, uint8_t** info, size_t* overall_size, argument
123 *info = reinterpret_cast<uint8_t*>(g_dispatch->calloc(*info_size, total_backtrace_allocs_));
124 if (*info == nullptr) {
132 uint8_t* data = *info;
H A Dbacktrace.cpp141 Dl_info info; local
142 if (dladdr(reinterpret_cast<void*>(frames[frame_num]), &info) != 0) {
143 offset = reinterpret_cast<uintptr_t>(info.dli_saddr);
144 symbol = info.dli_sname;
150 const char* soname = (entry != nullptr) ? entry->name.c_str() : info.dli_fname;
H A Dmalloc_debug.cpp68 uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory,
71 void debug_free_malloc_leak_info(uint8_t* info);
237 void debug_get_malloc_leak_info(uint8_t** info, size_t* overall_size, argument
242 if (info == nullptr || overall_size == nullptr || info_size == NULL ||
248 *info = nullptr;
260 g_debug->track->GetInfo(*g_debug, info, overall_size, info_size, total_memory, backtrace_size);
263 void debug_free_malloc_leak_info(uint8_t* info) { argument
264 g_dispatch->free(info);
/bionic/libc/dns/net/
H A Dsethostent.c94 struct getnamaddr *info = rv; local
108 hp = _hf_gethtbyname2(name, AF_INET6, info);
112 hp = _hf_gethtbyname2(name, AF_INET, info);
116 hp = _hf_gethtbyname2(name, af, info);
119 if (*info->he == NETDB_INTERNAL && errno == ENOSPC) {
128 _hf_gethtbyname2(const char *name, int af, struct getnamaddr *info) argument
143 *info->he = NETDB_INTERNAL;
147 if ((ptr = buf = malloc(len = info->buflen)) == NULL) {
149 *info->he = NETDB_INTERNAL;
159 info
246 struct getnamaddr *info = rv; local
[all...]
/bionic/libc/kernel/uapi/linux/
H A Datm_zatm.h39 struct zatm_pool_info info; member in struct:zatm_pool_req
H A Dcycx_cfm.h64 struct cycx_fw_info info; member in struct:cycx_firmware
H A Dbsg.h62 __u32 info; member in struct:sg_io_v4
H A Dlightnvm.h62 struct nvm_ioctl_device_info info[31]; member in struct:nvm_ioctl_get_devices
H A Dmic_common.h82 struct _mic_vring_info * info; member in struct:mic_vring
H A Dpps.h71 struct pps_kinfo info; member in struct:pps_fdata
/bionic/libdl/
H A Dlibdl.c36 int dladdr(const void* addr __unused, Dl_info* info __unused) { return 0; }
44 int dl_iterate_phdr(int (*cb)(struct dl_phdr_info* info, size_t size, void* data) __unused, argument
/bionic/tests/
H A Dstack_unwinding_test.cpp46 Dl_info info; local
47 memset(&info, 0, sizeof(info));
48 if (dladdr(ip, &info) != 0) {
49 symbol = info.dli_sname;
50 if (info.dli_saddr != nullptr) {
51 offset = static_cast<int>(reinterpret_cast<char*>(ip) - reinterpret_cast<char*>(info.dli_saddr));
55 fprintf(stderr, " #%02d %p %s%+d (%s)\n", *count_ptr, ip, symbol, offset, info.dli_fname ? info.dli_fname : "??");
H A Dsignal_test.cpp285 static void SigqueueSignalHandler(int signum, siginfo_t* info, void*) { argument
287 ASSERT_EQ(SIGALRM, info->si_signo);
288 ASSERT_EQ(SI_QUEUE, info->si_code);
289 ASSERT_EQ(1, info->si_value.sival_int);
317 siginfo_t info; local
319 ASSERT_EQ(SIGALRM, sigwaitinfo(&just_SIGALRM, &info));
321 ASSERT_EQ(SIGALRM, info.si_signo);
322 ASSERT_EQ(1, info.si_value.sival_int);
341 siginfo_t info; local
346 ASSERT_EQ(SIGALRM, sigtimedwait(&just_SIGALRM, &info,
369 siginfo_t info; local
[all...]
/bionic/libc/kernel/uapi/sound/
H A Dsb16_csp.h56 struct snd_sb_csp_mc_header info; member in struct:snd_sb_csp_microcode

Completed in 2650 milliseconds

12