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

12 3 4 5 6

  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
PackageIconLoaderTest.java 48 mThread.exit();
90 public void exit() { method in class:PackageIconLoaderTest.ConsumerThread
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 31 public BasicBlock[] exit; // null if the block is a leaf. field in class:BasicBlock
78 .append(", exit{");
79 if (exit != null) {
80 for (int i = 0; i < exit.length; i++)
81 sbuf.append(exit[i].position).append(", ");
333 prev.exit = m.jump;
341 prev.exit = makeArray(bb);
351 prev.exit = makeArray(bb);
366 b.exit = m.jump;
  /external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
vms-code.c 141 #ifdef exit macro
142 #undef exit
143 extern void exit PROTO((int)); /* <stdlib.h> ended up prototyping vms_exit */
152 exit( status == 0 ? SS$_NORMAL : (SS$_ABORT | STS$M_INHIB_MSG) );
  /external/dropbear/
chansession.h 51 /* exit details */
52 struct exitinfo exit; member in struct:ChanSess
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/kernel-headers/original/linux/
lis331dlh.h 55 void (*exit)(void); member in struct:lis331dlh_platform_data
l3g4200d.h 66 void (*exit)(void); member in struct:l3g4200d_platform_data
  /external/valgrind/main/coregrind/
m_libcassert.c 145 void VG_(exit)( Int status ) function
225 VG_(exit)(1);
238 VG_(exit)(2);
311 VG_(umsg)("Valgrind has to exit now. Sorry. Bye!\n");
314 VG_(exit)(1);
  /sdk/layoutopt/app/src/com/android/layoutopt/cli/
Main.java 44 exit(); method
75 private static void exit() { method in class:Main
76 System.exit(0);
  /system/core/sh/bltin/
bltin.h 72 #define exit sh_exit macro
83 #define INITARGS(argv) if ((commandname = argv[0]) == NULL) {fputs("Argc is zero\n", stderr); exit(2);} else
  /external/chromium/net/tools/fetch/
fetch_client.cc 31 exit(1);
121 base::AtExitManager exit; local
  /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/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
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
EffectsBar.java 60 exit(select ? new Runnable() {
103 exit(null);
159 public boolean exit(final Runnable runnableOnDone) { method in class:EffectsBar
160 // Exit effects-menu selected states.
  /prebuilt/linux-x86/toolchain/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::__anon20898
  /frameworks/base/services/java/com/android/server/connectivity/
Vpn.java 133 mLegacyVpnRunner.exit();
283 mLegacyVpnRunner.exit();
416 exit(); method
420 public void exit() { method in class:Vpn.LegacyVpnRunner
634 exit(); method
  /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/llvm/include/llvm/Analysis/
RegionInfo.h 10 // Calculate a program structure tree built out of single entry single exit
143 /// @brief A single entry single exit Region.
154 /// BasicBlocks that merge several entry or exit edges so that after the merge
155 /// just one entry and one exit edge exists.
161 /// The \e Exit of a Region is the first BasicBlock that is passed after
162 /// leaving the Region. It is not an element of the Region. The exit BasicBlock,
215 // The exit BasicBlock of this region.
217 BasicBlock *exit; member in class:llvm::Region
246 /// @param Exit The exit basic block of the region
    [all...]
  /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

Completed in 2374 milliseconds

12 3 4 5 6