HomeSort by relevance Sort by last modified time
    Searched refs:cur_action (Results 1 - 2 of 2) sorted by null

  /system/core/init/
init.c 76 static struct action *cur_action = NULL; variable in typeref:struct:action
549 if (!cur_action || !cur_command || is_last_command(cur_action, cur_command)) {
550 cur_action = action_remove_queue_head();
552 if (!cur_action)
554 INFO("processing action %p (%s)\n", cur_action, cur_action->name);
555 cur_command = get_first_command(cur_action);
557 cur_command = get_next_command(cur_action, cur_command);
572 cmd_str, cur_action ? cur_action->name : "", ret, cur_command->filename
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 473 struct sigaction cur_action; local
474 ASSERT_TRUE(sigaction(THREAD_SIGNAL, NULL, &cur_action) == 0);
488 EXPECT_EQ(cur_action.sa_sigaction, new_action.sa_sigaction);
493 cur_action.sa_flags &= ~SA_RESTORER;
496 EXPECT_EQ(cur_action.sa_flags, new_action.sa_flags);

Completed in 68 milliseconds