Lines Matching refs:hookInfo
117 static int ServerStageHookRun(const HOOK_INFO *hookInfo, void *executionContext) in ServerStageHookRun() argument
120 ServerStageHook realHook = (ServerStageHook)hookInfo->hookCookie; in ServerStageHookRun()
124 static void PreHookExec(const HOOK_INFO *hookInfo, void *executionContext) in PreHookExec() argument
129 APPSPAWN_LOGI("Hook stage: %{public}d prio: %{public}d start", hookInfo->stage, hookInfo->prio); in PreHookExec()
132 static void PostHookExec(const HOOK_INFO *hookInfo, void *executionContext, int executionRetVal) in PostHookExec() argument
139 hookInfo->stage, hookInfo->prio, diff, executionRetVal); in PostHookExec()
174 static int AppSpawnHookRun(const HOOK_INFO *hookInfo, void *executionContext) in AppSpawnHookRun() argument
177 AppSpawnHook realHook = (AppSpawnHook)hookInfo->hookCookie; in AppSpawnHookRun()
181 static void PreAppSpawnHookExec(const HOOK_INFO *hookInfo, void *executionContext) in PreAppSpawnHookExec() argument
185 APPSPAWN_LOGV("Hook stage: %{public}d prio: %{public}d start", hookInfo->stage, hookInfo->prio); in PreAppSpawnHookExec()
188 static void PostAppSpawnHookExec(const HOOK_INFO *hookInfo, void *executionContext, int executionRe… in PostAppSpawnHookExec() argument
194 hookInfo->stage, hookInfo->prio, diff, executionRetVal); in PostAppSpawnHookExec()
272 static int ProcessMgrHookRun(const HOOK_INFO *hookInfo, void *executionContext) in ProcessMgrHookRun() argument
275 ProcessChangeHook realHook = (ProcessChangeHook)hookInfo->hookCookie; in ProcessMgrHookRun()