Home
last modified time | relevance | path

Searched refs:find (Results 1 – 18 of 18) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/string/
Dstrcasestr.c49 strcasestr(const char *s, const char *find) in strcasestr() argument
55 _DIAGASSERT(find != NULL); in strcasestr()
57 if ((c = *find++) != 0) { in strcasestr()
59 len = strlen(find); in strcasestr()
65 } while (strncasecmp(s, find, len) != 0); in strcasestr()
/bionic/libc/upstream-openbsd/lib/libc/string/
Dstrstr.c40 strstr(const char *s, const char *find) in strstr() argument
45 if ((c = *find++) != 0) { in strstr()
46 len = strlen(find); in strstr()
52 } while (strncmp(s, find, len) != 0); in strstr()
/bionic/libc/malloc_debug/
DMapData.cpp127 auto it = entries_.find(entry); in ReadMaps()
146 const MapEntry* MapData::find(uintptr_t pc, uintptr_t* rel_pc) { in find() function in MapData
151 auto it = entries_.find(&pc_entry); in find()
155 it = entries_.find(&pc_entry); in find()
DFreeTrackData.cpp57 auto back_iter = backtraces_.find(header); in LogFreeError()
89 auto back_iter = backtraces_.find(header); in VerifyAndFree()
134 auto back_iter = backtraces_.find(header); in LogBacktrace()
DMapData.h67 const MapEntry* find(uintptr_t pc, uintptr_t* rel_pc = nullptr);
Dbacktrace.cpp62 g_current_code_map = g_map_data.find(ip); in find_current_map()
148 const MapEntry* entry = g_map_data.find(frames[frame_num], &rel_pc); in backtrace_string()
DREADME.md40 to find memory corruption occuring to a region before the original allocation.
68 to find memory corruption occuring to a region after the original allocation.
/bionic/libc/tools/
Dgensyscalls.py232 if param.find("*") >= 0:
417 pos_lparen = line.find('(')
437 pos_colon = syscall_func.find(':')
447 pos_colon2 = syscall_func.find(':', pos_colon + 1)
459 alias_delim = syscall_func.find('|')
463 alias_delim = syscall_name.find('|')
Dgenversion-scripts.py48 index = line.find("#")
/bionic/tests/
Ddirent_test.cpp33 ASSERT_TRUE(names.find(".") != names.end()); in CheckProcSelf()
34 ASSERT_TRUE(names.find("..") != names.end()); in CheckProcSelf()
35 ASSERT_TRUE(names.find("cmdline") != names.end()); in CheckProcSelf()
36 ASSERT_TRUE(names.find("fd") != names.end()); in CheckProcSelf()
37 ASSERT_TRUE(names.find("stat") != names.end()); in CheckProcSelf()
Dstack_protector_test.cpp49 ASSERT_TRUE(tids.find(tid) == tids.end()); in Check()
Difaddrs_test.cpp133 EXPECT_TRUE(addrs.find(addr) != addrs.end()) << if_name << ' ' << std::hex << ntohl(addr); in CheckAddressIsInSet()
Dgtest_main.cpp995 if (gtest_filter_str.find(":-") != std::string::npos) { in PickOptions()
/bionic/linker/
Dlinked_list.h201 iterator find(T* value) const { in find() function
Dlinker.cpp517 pos = s.find("$", pos); in set_dt_runpath()
1338 auto it = soinfo_list.find(caller); in ElfW()
1452 auto it = cache_.find(key); in get_or_open()
2408 auto it = g_soinfo_handles_map.find(reinterpret_cast<uintptr_t>(handle)); in soinfo_from_handle()
3464 g_soinfo_handles_map.find(handle_) != g_soinfo_handles_map.end()); in generate_handle()
/bionic/tools/bionicbb/
DREADME.md55 Bionicbb polls a gmail account to find changes that need to be built. The gmail
/bionic/libc/bionic/
Dsystem_properties.cpp130 const prop_info *find(const char *name);
633 const prop_info *prop_area::find(const char *name) { in find() function in prop_area
1094 return pa->find(name); in __system_property_find()
/bionic/libc/
DNOTICE29 strchr - find a character in a string
5103 memchr - find a character in a memory zone