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

  /external/lldb/source/Commands/
CommandObjectQuit.h 40 ShouldAskForConfirmation (bool& is_a_detach);
CommandObjectQuit.cpp 38 // is_a_detach will be true if all alive processes will be detached when you quit
41 CommandObjectQuit::ShouldAskForConfirmation (bool& is_a_detach)
46 is_a_detach = true;
72 is_a_detach = false;
84 bool is_a_detach = true; local
85 if (ShouldAskForConfirmation (is_a_detach))
88 message.Printf("Quitting LLDB will %s one or more processes. Do you really want to proceed", (is_a_detach ? "detach from" : "kill"));

Completed in 54 milliseconds