/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
shutdown.c | 10 int shutdown(int fd, int how) { 11 return ki_shutdown(fd, how);
|
/external/zlib/src/contrib/blast/ |
blast.h | 38 typedef unsigned (*blast_in)(void *how, unsigned char **buf); 39 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len); 52 * The input function is invoked: len = infun(how, &buf), where buf is set by 58 * The output function is invoked: err = outfun(how, buf, len), where the bytes
|
/external/valgrind/main/include/ |
pub_tool_libcsignal.h | 40 extern Int VG_(sigprocmask) ( Int how, const vki_sigset_t* set,
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
signal.c | 100 pthread_sigmask (int how, sigset_t const *set, sigset_t * oset) 109 /* Validate the `how' argument. */ 112 switch (how) 121 /* Invalid `how' argument. */ 142 switch (how)
|
/bionic/libc/bionic/ |
pthread_sigmask.cpp | 38 int pthread_sigmask(int how, const sigset_t* iset, sigset_t* oset) { 43 // be to ignore 'how' and return the current signal set into 'oset'). 52 if (__rt_sigprocmask(how, in_set_ptr, &out_set, sizeof(out_set)) == -1) {
|
/external/chromium/third_party/libevent/test/ |
regress.rpc | 17 string how = 1;
|
/external/chromium_org/third_party/libevent/test/ |
regress.rpc | 17 string how = 1;
|
/external/clang/test/SemaCXX/ |
switch.cpp | 46 template <En how> void foo() { 49 switch (how) { //expected-warning {{no case matching constant switch condition '2'}}
|
/external/icu4c/samples/ |
readme.txt | 7 break - demonstrates how to use BreakIterators in C and C++. 11 case - demonstrates how to do Unicode case conversion in C and C++. 29 strsrch - demonstrates how to search for patterns in Unicode text using the usearch interface. 33 uciter8.c - demonstrates how to leniently read 8-bit Unicode text. 60 * How do I build the samples?
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
PERF.awk | 32 how = how ? how : "sending"; # what is the operation 53 else if (gsub("^how=", "",arg)) { how = arg } 93 print "how = ", how 115 # how and what has to match 117 $13 == how && $14 == what && (!from || ($15 == from)) && (!to || ($16 == to)) &&
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_init.h | 48 #error Unsupported compiler: please find out how to implement global initializers in C on it
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_init.h | 48 #error Unsupported compiler: please find out how to implement global initializers in C on it
|
/system/core/sh/ |
miscbltin.c | 344 how = SOFT | HARD; local 354 how = HARD; 357 how = SOFT; 396 if (how & SOFT) 398 else if (how & HARD) 419 if (how & HARD) 421 if (how & SOFT) 426 if (how & SOFT) 428 else if (how & HARD)
|
/external/libppp/src/ |
systems.c | 287 /* Values for ``how'' in ReadSystem */ 317 struct prompt *prompt, struct datalink *cx, int how) 359 n = ReadSystem(bundle, name, arg, prompt, cx, how); 378 if (how == SYSTEM_EXISTS) { 391 if (*cp != '!' && how == SYSTEM_EXEC) 401 if ((how != SYSTEM_EXEC && allowcmd) || 402 (how == SYSTEM_EXEC && !allowcmd)) { 433 int def, how, rs; local 437 how = ID0realuid() == 0 ? SYSTEM_EXISTS : SYSTEM_VALIDATE; 442 rs = ReadSystem(NULL, "default", CONFFILE, prompt, NULL, how); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/ |
rdfseg2.asm | 6 ;; can't remember how to print a string in DOS, but if anyone wants
|
/external/libvorbis/doc/ |
a2-encapsulation-rtp.tex | 9 Audio''} for description of how to embed Vorbis audio in an RTP stream.
|
/external/valgrind/main/none/tests/ |
shell.stderr.exp | 5 Add more stringent tests in PRE(sys_execve), or work out how to recover.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
rpc.py | 25 See the Idle run.main() docstring for further information on how this was 169 how, (oid, methodname, args, kwargs) = request 187 if how == 'CALL': 192 elif how == 'QUEUE': 196 return ("ERROR", "Unsupported message type: %s" % how) 245 how, what = response 246 if how == "OK": 248 if how == "QUEUED": 250 if how == "EXCEPTION": 253 if how == "EOF" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
rpc.py | 25 See the Idle run.main() docstring for further information on how this was 169 how, (oid, methodname, args, kwargs) = request 187 if how == 'CALL': 192 elif how == 'QUEUE': 196 return ("ERROR", "Unsupported message type: %s" % how) 245 how, what = response 246 if how == "OK": 248 if how == "QUEUED": 250 if how == "EXCEPTION": 253 if how == "EOF" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
posixfile.py | 153 def lock(self, how, *args): 156 if 'w' in how: l_type = fcntl.F_WRLCK 157 elif 'r' in how: l_type = fcntl.F_RDLCK 158 elif 'u' in how: l_type = fcntl.F_UNLCK 161 if '|' in how: cmd = fcntl.F_SETLKW 162 elif '?' in how: cmd = fcntl.F_GETLK 197 if '?' in how:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
posixfile.py | 153 def lock(self, how, *args): 156 if 'w' in how: l_type = fcntl.F_WRLCK 157 elif 'r' in how: l_type = fcntl.F_RDLCK 158 elif 'u' in how: l_type = fcntl.F_UNLCK 161 if '|' in how: cmd = fcntl.F_SETLKW 162 elif '?' in how: cmd = fcntl.F_GETLK 197 if '?' in how:
|
/external/chromium_org/tools/cr/cr/commands/ |
shell.py | 45 print 'Don\'t know how to run a shell on this system'
|
/external/openssh/openbsd-compat/ |
sigact.h | 82 int sigprocmask (int how, sigset_t *mask, sigset_t *omask);
|
/external/chromium_org/android_webview/ |
webview_pak.mk | 5 # This makefile fragment describes how to install a Chromium pak into the
|
/external/chromium_org/tools/valgrind/ |
chrome_tests.bat | 41 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
42 echo "for the instructions on how to get them."
57 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/threadsanitizer/threadsanitizer-on-windows"
58 echo "for the instructions on how to get them."
|