Home
last modified time | relevance | path

Searched refs:isdigit (Results 1 – 25 of 38) sorted by relevance

12

/system/core/demangle/
DDemangler.cpp264 assert(std::isdigit(*name)); in GetStringFromLength()
268 while (*name != '\0' && std::isdigit(*name)) { in GetStringFromLength()
325 bool isdigit = std::isdigit(*name); in ParseS() local
326 if (!isdigit && !std::isupper(*name)) { in ParseS()
331 if (isdigit) { in ParseS()
458 if (!std::isdigit(*name)) { in ParseComplexString()
462 if (std::isdigit(*name)) { in ParseComplexString()
692 } else if (std::isdigit(*name)) { in ParseArguments()
810 while (std::isdigit(*name)) { in FindFunctionName()
836 if (std::isdigit(*name)) { in FindFunctionName()
[all …]
/system/core/logd/
DLogKlog.cpp53 if ((len <= 0) || !isdigit(*s++)) return nullptr; in is_prio()
59 if (!isdigit(c)) return ((c == '>') && (*s == '[')) ? s : nullptr; in is_prio()
70 if ((len <= 0) || !isdigit(*s++)) return nullptr; in is_timestamp()
78 } else if (!isdigit(c)) { in is_timestamp()
342 while (--len && isdigit(*++endp) && (multiplier /= 10)) { in sniffTime()
378 if ((len > 9) && (cp[0] == 'c') && isdigit(cp[1]) && in sniffPid()
379 (isdigit(cp[2]) || (cp[2] == ' ')) && (cp[3] == ' ')) { in sniffPid()
383 if (isdigit(cp[i])) { in sniffPid()
420 while (--len && isdigit(*++cp)) { in parseKernelPrio()
713 ((size == 2) && (isdigit(tag[0]) || isdigit(tag[1]))) || in log()
[all …]
DLogWhiteBlackList.cpp158 if (isdigit(*str)) { in init()
162 } while (isdigit(*str)); in init()
168 if (isdigit(*str)) { in init()
172 } while (isdigit(*str)); in init()
DLogAudit.cpp210 if (pidptr && isdigit(pidptr[sizeof(pid_str) - 1])) { in logPrint()
213 while (isdigit(*cp)) { in logPrint()
DLogReader.cpp104 while (isdigit(*cp)) { in onDataAvailable()
DLogTags.cpp61 !isdigit(comment[strlen(uid_str)])) in sniffUid()
215 } else if (isdigit(*cp)) { in ReadFileEventLogTags()
227 if (!isdigit(*cp)) hasAlpha = true; in ReadFileEventLogTags()
/system/core/liblog/
Dlog_time.cpp77 while (isdigit(*ret)) { in strptime()
91 while (isdigit(*e)) { in strptime()
110 while (isdigit(*ret) && num && (mul > 1)) { in strptime()
/system/core/adb/
Dadb_utils.h114 if (str.empty() || !isdigit(str[0])) {
121 for (it = str.begin(); it != str.end() && isdigit(*it); ++it) {
/system/extras/iotop/
Dtasklist.cpp39 if (isdigit(entry->d_name[0])) { in ScanPidsInDir()
/system/core/init/
Dproperty_type.cpp66 while (it != value.end() && isdigit(*it)) { in CheckType()
Dmount_handler.cpp80 auto it = std::find_if(value.begin(), value.end(), [](char c) { return isdigit(c); }); in SetMountProperty()
/system/extras/multinetwork/
Dcommon.cpp38 if (arg == nullptr || !isdigit(arg[0]) || nethandle == nullptr) { in parseNetworkHandle()
/system/extras/crypto-perf/
Dcrypto.cpp51 (argv[i + 1][0] == '-' && !isdigit(argv[i + 1][1]))) { in processOptions()
/system/core/logd/tests/
Dlogd_test.cpp133 while (isdigit(*cp)) { in find_benchmark_spam()
141 while (isdigit(*++cp) || (*cp == '.') || (*cp == '%') || in find_benchmark_spam()
151 while (isdigit(*cp)) { in find_benchmark_spam()
189 while (isdigit(*cp) || (*cp == '\n')) { in TEST()
223 while (isdigit(*uid_name)) ++uid_name; in TEST()
/system/extras/memtrack/
Dmemtrack.cpp98 while (isAvail(1) && isdigit(data_[cur_idx_])) { in getPss()
182 if (!isdigit(dir_data->d_name[i])) { in scan()
/system/core/fastboot/
Dusb_linux.cpp120 if (!isdigit(*name)) in badname()
123 if(!isdigit(*name) && *name != '.' && *name != '-') in badname()
/system/core/libmeminfo/
Dsysmeminfo.cpp103 while (std::isdigit(*s)) s++;
/system/tools/sysprop/
DCommon.cpp334 return (isdigit(name[0]) ? "_" : "") + in ApiNameToIdentifier()
/system/timezone/tzdatacheck/
Dtzdatacheck.cpp121 if (!isdigit(toCheck)) { in checkDigits()
/system/core/logcat/tests/
Dlogcat_test.cpp230 while (isdigit(*ep)) { in fgetLongTime()
238 if (isdigit(ep[0]) && isdigit(ep[1]) && isdigit(ep[2])) break; in fgetLongTime()
/system/extras/latencytop/
Dlatencytop.c217 if (!isdigit(ent->d_name[0])) in read_process_stats()
/system/extras/simpleperf/
Denvironment.cpp113 while (!isdigit(*p) && *p != '\0') { in GetCpusFromString()
889 } else if (isdigit(s[0])) { in GetAndroidVersion()
/system/update_engine/common/
Dutils.cc497 !isdigit(partition_name[last_nondigit_pos - 1])) { in SplitPartitionName()
530 if (isdigit(partition_name.back())) { in MakePartitionName()
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
Dgrep.c407 if (newarg || !isdigit(lastc)) in main()
/system/extras/boottime_tools/bootio/
Dbootio_collector.cpp172 if (!isdigit(pidDir->d_name[0])) { in ReadProcData()

12