HomeSort by relevance Sort by last modified time
    Searched refs:how (Results 1 - 25 of 524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 43 extern Int VG_(sigprocmask) ( Int how, const vki_sigset_t* set,
  /bionic/libc/bionic/
pthread_sigmask.cpp 35 int pthread_sigmask(int how, const sigset_t* new_set, sigset_t* old_set) {
37 int result = sigprocmask(how, new_set, old_set);
sigprocmask.cpp 37 int sigprocmask(int how, const sigset_t* bionic_new_set, sigset_t* bionic_old_set) {
46 if (__rt_sigprocmask(how, new_set_ptr, &old_set, sizeof(old_set)) == -1) {
  /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)
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
typemaps.i 221 %define %char_ptr_in(how)
222 %typemap(how) char *, signed char *, unsigned char * {
223 /* %typemap(how) char * ... */
227 %typemap(how) char [ANY], signed char [ANY], unsigned char [ANY] {
228 /* %typemap(how) char [ANY] ... */
239 %define %char_ptr_out(how)
240 %typemap(how)
246 %typemap(how)
257 %define %swigtype_ptr_in(how)
258 %typemap(how) SWIGTYPE *
    [all...]
  /external/ltrace/sysdeps/linux-gnu/aarch64/
fetch.c 241 convert_arg(struct value *value, struct fetch_script how)
243 switch (how.c) {
252 assert(! "Don't know how to convert argument.");
259 struct value *value, struct fetch_script how)
261 if (convert_arg(value, how) < 0)
264 switch (how.f) {
269 if (how.hfa_t != NULL && how.count != 0 && how.count <= 8)
272 type_alignof(proc, info), how.sz)
309 struct fetch_script how = pass_arg(context, proc, ret_info); local
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_mbuf.h 54 struct mbuf * m_gethdr(int how, short type);
55 struct mbuf * m_get(int how, short type);
57 void m_clget(struct mbuf *m, int how);
64 #define MGET(m, how, type) ((m) = m_get((how), (type)))
65 #define MGETHDR(m, how, type) ((m) = m_gethdr((how), (type)))
66 #define MCLGET(m, how) m_clget((m), (how))
330 * Flags specifying how an allocation should be made
    [all...]
  /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/icu/icu4c/source/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
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
repaint_overlay.py 72 <label title="See fast/repaint/resources/text-based-repaint.js for how this works">
77 <button title="See fast/repaint/resources/text-based-repaint.js for how this works" onclick="highlight_under_repaint()">
  /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:
  /art/sigchainlib/
sigchain.cc 195 int sigprocmask(int how, const sigset_t* bionic_new_set, sigset_t* bionic_old_set) {
201 if (how == SIG_BLOCK) {
223 typedef int (*SigProcMask)(int how, const sigset_t*, sigset_t*);
225 return linked_sigprocmask(how, new_set_ptr, bionic_old_set);
  /external/chromium_org/tools/cr/cr/commands/
shell.py 45 print 'Don\'t know how to run a shell on this system'

Completed in 1080 milliseconds

1 2 3 4 5 6 7 8 91011>>