Searched defs:process_name (Results 1 - 7 of 7) sorted by relevance

/system/core/debuggerd/libdebuggerd/include/libdebuggerd/
H A Dtypes.h30 std::string process_name; member in struct:ThreadInfo
/system/core/lmkd/
H A Dstatslog.c66 char const* process_name, int32_t oom_score, int64_t pgfault,
88 if ((ret = android_log_write_string8(ctx, (process_name == NULL) ? "" : process_name)) < 0) {
65 stats_write_lmk_kill_occurred(android_log_context ctx, int32_t code, int32_t uid, char const* process_name, int32_t oom_score, int64_t pgfault, int64_t pgmajfault, int64_t rss_in_bytes, int64_t cache_in_bytes, int64_t swap_in_bytes) argument
/system/core/debuggerd/libdebuggerd/
H A Dbacktrace.cpp44 static void dump_process_header(log_t* log, pid_t pid, const char* process_name) { argument
52 if (process_name) {
53 _LOG(log, logtype::BACKTRACE, "Cmd line: %s\n", process_name);
92 dump_process_header(&log, target->second.pid, target->second.process_name.c_str());
109 char process_name[128]; local
110 read_with_default("/proc/self/cmdline", process_name, sizeof(process_name), "<unknown>");
111 dump_process_header(&log, getpid(), process_name);
H A Dtombstone.cpp128 thread_info.tid, thread_info.thread_name.c_str(), thread_info.process_name.c_str());
599 char process_name[128]; local
602 read_with_default("/proc/self/cmdline", process_name, sizeof(process_name), "<unknown>");
612 .process_name = process_name,
/system/connectivity/wificond/tests/integration/
H A Dprocess_utils.cpp45 bool IsProcessRunning(const char* process_name) { argument
47 RunShellCommand(StringPrintf("pgrep -c ^%s$", process_name), &output);
/system/core/debuggerd/
H A Dcrash_dump.cpp384 std::string process_name = get_process_name(g_target_thread); local
421 info.process_name = process_name;
/system/extras/simpleperf/
H A Denvironment.cpp523 std::string process_name = android::base::Basename(cmdline); local
526 size_t split_pos = process_name.find(':');
528 process_name = process_name.substr(0, split_pos);
530 if (process_name != package_name) {

Completed in 106 milliseconds