/external/chromium_org/net/tools/fetch/ |
fetch_client.cc | 37 exit(1); 128 base::AtExitManager exit; local
|
/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::__anon37457
|
/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::__anon39048
|
/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::__anon40562
|
/external/chromium_org/native_client_sdk/src/gonacl_appengine/static/lua/ |
naclterm.js | 75 this.exit(exitCode); 165 this.exit(this.embed.exitStatus); 169 * Exit the command. 171 NaClTerm.prototype.exit = function(code) { 174 this.io.print('Program crashed (exit status -1)\n')
|
/external/chromium_org/v8/src/arm/ |
lithium-codegen-arm.h | 450 void SetExit(Label* exit) { external_exit_ = exit; } 452 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
|
/external/chromium_org/v8/src/mips/ |
lithium-codegen-mips.h | 476 void SetExit(Label* exit) { external_exit_ = exit; } 478 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
|
/external/chromium_org/v8/src/x64/ |
lithium-codegen-x64.h | 400 void SetExit(Label* exit) { external_exit_ = exit; } 402 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode 403 Label* done() { return codegen_->NeedsDeferredFrame() ? &done_ : exit(); }
|
/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
|