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

1 23 4 5 6 7 8 91011>>

  /external/dropbear/
loginrec.h 137 int exit; /* process exit status */ member in struct:logininfo
svr-chansession.c 70 TRACE(("sesscheckclose, pid is %d", chansess->exit.exitpid))
71 return chansess->exit.exitpid != -1;
79 * use the svr_ses.lastexit struct to hold the exit, which is then compared by
88 struct exitinfo *exit = NULL; local
94 exit = NULL;
99 exit = &svr_ses.childpids[i].chansess->exit;
106 if (exit == NULL) {
108 exit = &svr_ses.lastexit;
111 exit->exitpid = pid
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
mergeCommand.java 129 exit (true, yre.getMessage (), yre, RC_UNEXPECTED); // does not return method
137 exit (true, "unexpected failure: ", t, RC_UNEXPECTED); // does not return method
141 exit (false, null, null, RC_OK); method
  /external/emma/core/java12/com/vladium/emma/instr/
instrCommand.java 170 exit (true, yre.getMessage (), yre, RC_UNEXPECTED); // does not return method
178 exit (true, "unexpected failure: ", t, RC_UNEXPECTED); // does not return method
182 exit (false, null, null, RC_OK); method
  /external/emma/core/java12/com/vladium/emma/report/
reportCommand.java 137 exit (true, yre.getMessage (), yre, RC_UNEXPECTED); // does not return method
145 exit (true, "unexpected failure: ", t, RC_UNEXPECTED); // does not return method
149 exit (false, null, null, RC_OK); method
  /external/kernel-headers/original/linux/
l3g4200d.h 66 void (*exit)(void); member in struct:l3g4200d_platform_data
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
ll.S 98 ble done_logo # ! if so exit
306 # Exit
308 exit: label
309 li 3,0 # 0 exit value
310 li 0,SYSCALL_EXIT # put the exit syscall number in eax
311 sc # and exit
  /frameworks/base/core/java/android/transition/
Scene.java 137 * Exiting a scene runs the {@link #setExitAction(Runnable) exit action}
140 public void exit() { method in class:Scene
207 * action, and possibly an exit action as well. An enter action
229 * action, and possibly an exit action as well. An exit action
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Dicttool.java 98 // Exit with the success/error code from #execute() as status.
99 System.exit(new Dicttool().execute(arguments));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cn_proc.h 56 /* "last" is the last process event: exit */
96 } exit; member in union:proc_event::__anon39266
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cn_proc.h 56 /* "last" is the last process event: exit */
96 } exit; member in union:proc_event::__anon40857
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cn_proc.h 56 /* "last" is the last process event: exit */
96 } exit; member in union:proc_event::__anon42371
  /external/emma/core/java12/com/vladium/emma/
Command.java 98 if ("exit".equals (on)) // 'exit' should always be first in this else-if chain
175 exit (true, "property override file [" + m_propertyFile.getAbsolutePath () + "] could not be read", ioe, RC_USAGE); method
205 exit (true, null, null, RC_USAGE); method
208 protected final void exit (final boolean showBuildID, final String msg, final Throwable t, final int rc) method in class:Command
223 // error exit:
230 System.exit (rc);
242 // normal exit: 't' is ignored
246 System.exit (0);
301 // return codes used with System.exit()
    [all...]
runCommand.java 163 exit (true, "failed to load Main-Class manifest attribute from [" + jarfile.getAbsolutePath () + "]", null, RC_UNEXPECTED); method
254 exit (true, yre.getMessage (), yre, RC_UNEXPECTED); // does not return method
262 exit (true, "unexpected failure: ", t, RC_UNEXPECTED); // does not return method
266 exit (false, null, null, RC_OK); method
  /external/linux-tools-perf/util/
session.h 83 exit, member in struct:perf_event_ops
  /external/llvm/include/llvm/Analysis/
RegionInfo.h 10 // Calculate a program structure tree built out of single entry single exit
141 /// @brief A single entry single exit Region.
152 /// BasicBlocks that merge several entry or exit edges so that after the merge
153 /// just one entry and one exit edge exists.
159 /// The \e Exit of a Region is the first BasicBlock that is passed after
160 /// leaving the Region. It is not an element of the Region. The exit BasicBlock,
211 // The exit BasicBlock of this region.
213 BasicBlock *exit; member in class:llvm::Region
242 /// @param Exit The exit basic block of the region
    [all...]
  /external/lzma/C/
LzFindMt.h 26 Bool exit; member in struct:_CMtSync
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
ll.S 71 je done_logo # ! if so, exit
368 # Exit
370 exit: label
371 push $SYSCALL_EXIT # Put exit syscall in rax
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.S 63 bge done_logo @ if so, exit
249 @ Exit
251 exit: label
254 swi 0x0 @ and exit
  /external/valgrind/main/exp-bbv/tests/x86-linux/
ll.S 63 je done_logo # if so, exit
367 # Exit
369 exit: label
372 inc %eax # put exit syscall number (1) in eax
373 int $0x80 # and exit
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
WakeLockStateMachine.java 33 * state, or false to remain in idle state. The wakelock is acquired on exit from idle state,
145 public void exit() { method in class:WakeLockStateMachine.IdleState
  /libcore/luni/src/main/java/java/lang/
Runtime.java 250 * Causes the VM to stop running and the program to exit.
257 public void exit(int code) { method in class:Runtime
284 // Ensure finalization on exit, if requested
442 * VM is about to exit. Note that all finalization which occurs
447 * {@code true} to enable finalization on exit, {@code false} to
521 * terminates normally (typically when the {@link #exit(int)} method is called).
598 * Causes the VM to stop running, and the program to exit with the given return code.
System.java 184 * Causes the VM to stop running and the program to exit with the given exit status.
189 public static void exit(int code) { method in class:System
190 Runtime.getRuntime().exit(code);
582 * Ensures that, when the VM is about to exit, all objects are
587 * the flag determines if finalization on exit is enabled.
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ImageSavingTask.java 41 boolean exit; field in class:ImageSavingTask.SaveRequest
55 boolean exit; field in class:ImageSavingTask.UpdatePreviewSaved
60 boolean exit; field in class:ImageSavingTask.URIResult
70 int quality, float sizeFactor, boolean exit) {
80 request.exit = exit;
92 final boolean exit = request.exit;
105 previewSaved.exit = exit;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
run.py 46 # completion, exit and interruptable (the main thread) flags:
91 exit()
116 exit()
210 def exit(): function
211 """Exit subprocess, possibly after first deleting sys.exitfunc
222 sys.exit(0)
229 Interrupt the MainThread and exit server if link is dropped.
268 # Keep a reference to stdin so that it won't try to exit IDLE if
280 "Override SocketIO method - terminate wait on callback and exit thread"
316 exit()
    [all...]

Completed in 2457 milliseconds

1 23 4 5 6 7 8 91011>>