Home
last modified time | relevance | path

Searched refs:old_str (Results 1 – 2 of 2) sorted by relevance

/system/core/libunwindstack/
DMaps.cpp66 const char* old_str = line; in InternalParseLine() local
67 uint64_t start = strtoull(old_str, &str, 16); in InternalParseLine()
68 if (old_str == str || *str++ != '-') { in InternalParseLine()
72 old_str = str; in InternalParseLine()
73 uint64_t end = strtoull(old_str, &str, 16); in InternalParseLine()
74 if (old_str == str || !std::isspace(*str++)) { in InternalParseLine()
114 old_str = str; in InternalParseLine()
115 uint64_t offset = strtoull(old_str, &str, 16); in InternalParseLine()
116 if (old_str == str || !std::isspace(*str)) { in InternalParseLine()
121 old_str = str; in InternalParseLine()
[all …]
/system/core/libcutils/
Dstr_parms.cpp333 char** old_str = static_cast<char**>(context); in combine_strings() local
338 *old_str ? *old_str : "", in combine_strings()
339 *old_str ? ";" : "", in combine_strings()
342 if (*old_str) in combine_strings()
343 free(*old_str); in combine_strings()
346 *old_str = new_str; in combine_strings()
350 *old_str = NULL; in combine_strings()