Lines Matching refs:name
130 return strcmp(node1->name, (char *)data);
142 APPSPAWN_CHECK(g_appSpawnMgr != NULL && processName != NULL, return NULL, "Invalid mgr or process name");
154 int ret = strcpy_s(node->name, len, processName);
156 return NULL, "Failed to strcpy process name");
181 APPSPAWN_LOGI("ProcessAppDied %{public}s, pid=%{public}d", node->name, node->pid);
194 AppSpawnedProcess *GetSpawnedProcessByName(const char *name)
197 APPSPAWN_CHECK_ONLY_EXPER(name != NULL, return NULL);
199 ListNode *node = OH_ListFind(&g_appSpawnMgr->appQueue, (void *)name, AppInfoNameComparePro);
379 APPSPAPWN_DUMP("App info name: %{public}s exitStatus: 0x%{public}x spawn time: %{public}" PRIu64 " us ",
380 appInfo->name, appInfo->exitStatus, diff);
398 char *ptyName = GetAppSpawnMsgExtInfo(message, "pty-name", &len);