HomeSort by relevance Sort by last modified time
    Searched defs:exit (Results 51 - 75 of 127) sorted by null

1 23 4 5 6

  /frameworks/base/core/java/android/net/
DhcpStateMachine.java 329 public void exit() { method in class:DhcpStateMachine.WaitBeforeRenewalState
  /libcore/luni/src/main/java/java/lang/
Runtime.java 245 * Causes the VM to stop running and the program to exit. If
254 public void exit(int code) { method in class:Runtime
281 // Ensure finalization on exit, if requested
414 * VM is about to exit. Note that all finalization which occurs
419 * {@code true} to enable finalization on exit, {@code false} to
509 * terminates normally (typically when the {@link #exit(int)} method is called).
586 * Causes the VM to stop running, and the program to exit.
System.java 172 * Causes the VM to stop running and the program to exit. If
180 public static void exit(int code) { method in class:System
181 Runtime.getRuntime().exit(code);
591 * Ensures that, when the VM is about to exit, all objects are
596 * the flag determines if finalization on exit is enabled.
  /sdk/sdkmanager/app/tests/com/android/sdkmanager/
CommandLineProcessorTest.java 59 protected void exit() { method in class:CommandLineProcessorTest.MockCommandLineProcessor
SdkCommandLineTest.java 48 protected void exit() { method in class:SdkCommandLineTest.MockSdkCommandLine
  /sdk/traceview/src/com/android/traceview/
ThreadData.java 95 Call exit(MethodData method, ArrayList<TraceAction> trace) { method in class:ThreadData
102 String error = "Method exit (" + method.getName()
  /external/kernel-headers/original/linux/
kxtf9.h 110 void (*exit)(void); member in struct:kxtf9_platform_data
module.h 329 void (*exit)(void); member in struct:module
  /external/v8/src/arm/
lithium-codegen-arm.h 374 void SetExit(Label *exit) { external_exit_ = exit; }
376 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
builtins-arm.cc 940 Label use_receiver, exit; local
    [all...]
  /external/v8/src/ia32/
lithium-codegen-ia32.h 356 void SetExit(Label *exit) { external_exit_ = exit; }
358 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
builtins-ia32.cc 355 Label use_receiver, exit; local
364 __ j(above_equal, &exit, not_taken);
372 __ bind(&exit);
448 // Exit the JS frame. Notice that this also removes the empty
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.h 347 void SetExit(Label *exit) { external_exit_ = exit; }
349 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
builtins-x64.cc 358 Label use_receiver, exit; local
365 __ j(above_equal, &exit);
373 __ bind(&exit);
504 // Exit the JS frame. Notice that this also removes the empty
    [all...]
  /external/v8/test/cctest/
test-macro-assembler-x64.cc 142 static void TestMoveSmi(MacroAssembler* masm, Label* exit, int id, Smi* value) {
147 __ j(not_equal, exit);
167 Label exit; local
169 TestMoveSmi(masm, &exit, 1, Smi::FromInt(0));
170 TestMoveSmi(masm, &exit, 2, Smi::FromInt(127));
171 TestMoveSmi(masm, &exit, 3, Smi::FromInt(128));
172 TestMoveSmi(masm, &exit, 4, Smi::FromInt(255));
173 TestMoveSmi(masm, &exit, 5, Smi::FromInt(256));
174 TestMoveSmi(masm, &exit, 6, Smi::FromInt(Smi::kMaxValue));
175 TestMoveSmi(masm, &exit, 7, Smi::FromInt(-1))
258 Label exit; local
310 Label exit; local
440 Label exit; local
486 Label exit; local
496 __ j(NegateCondition(cond), &exit); local
507 __ j(NegateCondition(cond), &exit); local
518 __ j(NegateCondition(cond), &exit); local
529 __ j(NegateCondition(cond), &exit); local
542 __ j(NegateCondition(cond), &exit); local
570 __ j(NegateCondition(cond), &exit); local
595 __ j(NegateCondition(cond), &exit); local
611 __ j(NegateCondition(cond), &exit); local
630 __ j(NegateCondition(cond), &exit); local
640 __ j(NegateCondition(cond), &exit); local
645 __ j(NegateCondition(cond), &exit); local
650 __ j(NegateCondition(cond), &exit); local
655 __ j(NegateCondition(cond), &exit); local
736 Label exit; local
826 Label exit; local
1018 Label exit; local
1110 Label exit; local
1218 Label exit; local
1330 Label exit; local
1428 Label exit; local
1499 Label exit; local
1580 Label exit; local
1663 Label exit; local
1748 Label exit; local
1817 Label exit; local
1915 Label exit; local
2023 Label exit; local
2094 Label exit; local
2160 Label exit; local
2204 Label exit; local
    [all...]
test-assembler-mips.cc 132 Label exit, error; local
241 __ b(&exit);
248 __ bind(&exit);
734 Label exit, exit2, exit3; local
736 __ Branch(&exit, ge, a0, Operand(0x00000000));
740 __ bind(&exit);
    [all...]
  /external/llvm/lib/Analysis/
RegionInfo.cpp 9 // Detects single entry single exit regions in the control flow graph.
56 Region::Region(BasicBlock *Entry, BasicBlock *Exit, RegionInfo* RInfo,
58 : RegionNode(Parent, Entry, 1), RI(RInfo), DT(dt), exit(Exit) {}
79 assert(exit && "No exit to replace!");
80 exit = BB;
88 BasicBlock *entry = getEntry(), *exit = getExit(); local
91 if (!exit)
95 && !(DT->dominates(exit, BB) && DT->dominates(entry, exit)))
156 BasicBlock *exit = getExit(); local
211 BasicBlock *entry = getEntry(), *exit = getExit(); local
224 BasicBlock *exit = getExit(); local
596 BasicBlock *exit = N->getBlock(); local
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeISelLowering.cpp 430 // exit:
452 // Create the start and exit basic blocks for the atomic operation
454 MachineBasicBlock *exit = F->CreateMachineBasicBlock(LLVM_BB); local
456 F->insert(It, exit);
461 exit->splice(exit->begin(), MBB, llvm::next(MachineBasicBlock::iterator(MI)),
463 exit->transferSuccessorsAndUpdatePHIs(MBB);
480 start->addSuccessor(exit);
502 start->addSuccessor(exit);
524 start->addSuccessor(exit);
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
CommandLineProcessor.java 233 * This method will exit and not return if a parsing error arise.
537 exit(); method
869 protected void exit() { method in class:CommandLineProcessor
    [all...]
  /external/dhcpcd/
client.c 137 struct timeval exit; member in struct:if_state
204 /* Setup a signal pipe so parent knows when to exit. */
214 exit(EXIT_FAILURE);
218 /* Notify parent it's safe to exit as we've detached. */
226 /* Reset signals as we're the parent about to exit. */
246 timerclear(&state->exit);
587 state->exit.tv_sec = state->stop.tv_sec + 10;
589 state->exit.tv_sec = options->timeout;
714 if (timerisset(&state->exit)) {
715 timersub(&state->exit, tv, &state->exit)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
StateMachine.java 36 * <code>processMessage</code> and optionally <code>enter/exit/getName</code>.
37 * The enter/exit methods are equivalent to the construction and destruction
76 * will exit the current state and its parent and then exit from the controlling thread
80 * an <code>enter</code> method and <code>exit</exit> method which may be overridden.</p>
85 * the current state is found. We then exit from the current state and its
121 * which is mP1. It will then call mS5.exit, mS1.exit, mS2.enter and then
166 exit { log("mP1.exit");
    [all...]
  /frameworks/base/services/audioflinger/
AudioPolicyService.cpp 118 mTonePlaybackThread->exit();
120 mAudioCommandThread->exit();
988 void AudioPolicyService::AudioCommandThread::exit() function in class:android::AudioPolicyService::AudioCommandThread
990 LOGV("AudioCommandThread::exit");
    [all...]
  /hardware/invensense/mlsdk/platform/include/linux/
mpu.h 224 * @exit: function used to free memory allocated for the driver
245 int (*exit) (void *mlsl_handle, member in struct:ext_slave_descr
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 313 // Flag that ringtone volume must be limited to music volume until we exit MODE_RINGTONE
801 LOGV("releaseInput() exit");
1282 void AudioPolicyManagerBase::exit() function in class:android_audio_legacy::AudioPolicyManagerBase
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-flow.h 649 basic_block exit; member in struct:omp_region
724 extern void gather_blocks_in_sese_region (basic_block entry, basic_block exit,
    [all...]

Completed in 1480 milliseconds

1 23 4 5 6