Home
last modified time | relevance | path

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

/developtools/profiler/hidebug/frameworks/native/
Dhidebug_base.c173 char targetProcName[PARAM_BUF_LEN] = { 0 }; in MatchMallocHookStartupProp() local
193 retLen = GetMallocHookStartupValue(paramOutBuf, targetProcName, PARAM_BUF_LEN); in MatchMallocHookStartupProp()
199 const int targetProcNameSize = strlen(targetProcName); in MatchMallocHookStartupProp()
200 if (strncmp(targetProcName, "init", targetProcNameSize) == 0 || in MatchMallocHookStartupProp()
201 strncmp(targetProcName, "appspawn", targetProcNameSize) == 0) { in MatchMallocHookStartupProp()
202 … HIDEBUG_LOGI("malloc hook: this target proc '%" LOG_PRIV_PUBLIC "s' no hook", targetProcName); in MatchMallocHookStartupProp()
206 if (strncmp(thisName, targetProcName, targetProcNameSize) == 0) { in MatchMallocHookStartupProp()