Home
last modified time | relevance | path

Searched refs:how (Results 1 – 25 of 3785) sorted by relevance

12345678910>>...152

/external/usrsctp/usrsctplib/
Duser_mbuf.h54 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);
58 struct mbuf * m_getm2(struct mbuf *m, int len, int how, short type, int flags, int allonebuf);
59 struct mbuf *m_uiotombuf(struct uio *uio, int how, int len, int align, int flags);
67 #define MGET(m, how, type) ((m) = m_get((how), (type))) argument
68 #define MGETHDR(m, how, type) ((m) = m_gethdr((how), (type))) argument
69 #define MCLGET(m, how) m_clget((m), (how)) argument
345 #define MBTOM(how) (how) argument
400 #define M_PREPEND(m, plen, how) do { \ argument
[all …]
/external/capstone/tests/
DREADME1 This directory contains some test code to show how to use Capstone API.
9 This code shows how to access to architecture-neutral information in disassembled
14 This code shows how to use SKIPDATA option to skip broken instructions (most likely
19 This code shows how to use the API cs_disasm_iter() to decode one instruction at
23 This code shows how to use MNEMONIC option to customize instruction mnemonic
24 at run-time, and then how to reset the engine to use the default mnemonic.
27 These code show how to access architecture-specific information for each
31 This code shows how to use Capstone from a Windows driver.
/external/libwebsockets/minimal-examples/raw/
DREADME.md3 minimal-raw-adopt-tcp|Shows how to have lws adopt an existing tcp socket something else had connect…
4 minimal-raw-adopt-udp|Shows how to create a udp socket and read and write on it
5 minimal-raw-fallback-http|Shows how to run a normal http(s) server that falls back to a specified r…
6 minimal-raw-file|Shows how to adopt a file descriptor (device node, fifo, file, etc) into the lws e…
8 minimal-raw-proxy-fallback|Shows how to run a normal http(s) server that falls back to a proxied co…
9 minimal-raw-proxy|Shows how to set up a vhost so it listens for connections and proxies them to a s…
10 minimal-raw-vhost|Shows how to set up a vhost that listens and accepts RAW socket connections
/external/python/cpython2/Demo/pysvr/
Dpysvr.py95 except SystemExit, how:
96 if how:
98 how = str(how)
100 how = ""
101 stdout.write("Exit %s\n" % how)
112 except SystemExit, how:
113 raise SystemExit, how, sys.exc_info()[2]
/external/ltp/include/lapi/
Dsafe_rt_signal.h32 int how, const sigset_t *set, in safe_rt_sigprocmask() argument
37 ret = tst_syscall(__NR_rt_sigprocmask, how, set, oldset, sigsetsize); in safe_rt_sigprocmask()
41 file, lineno, how, set, oldset, sigsetsize); in safe_rt_sigprocmask()
47 #define SAFE_RT_SIGPROCMASK(how, set, oldset, sigsetsize) \ argument
48 safe_rt_sigprocmask(__FILE__, __LINE__, how, set, oldset, sigsetsize)
/external/python/cpython3/Lib/idlelib/
Drpc.py173 how, (oid, methodname, args, kwargs) = request
191 if how == 'CALL':
196 elif how == 'QUEUE':
200 return ("ERROR", "Unsupported message type: %s" % how)
253 how, what = response
254 if how == "OK":
256 if how == "QUEUED":
258 if how == "EXCEPTION":
261 if how == "EOF":
265 if how == "ERROR":
[all …]
/external/python/cpython2/Lib/idlelib/
Drpc.py169 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":
257 if how == "ERROR":
[all …]
/external/python/cpython2/Doc/library/
Demail-examples.rst6 Here are a few examples of how to use the :mod:`email` package to read, write,
9 First, let's see how to create and send a simple text message:
20 Here's an example of how to send a MIME message containing a bunch of family
26 Here's an example of how to send the entire contents of a directory as an email
32 Here's an example of how to unpack a MIME message like the one
37 Here's an example of how to create an HTML message with an alternative plain
/external/libxml2/
Dxzlib.c65 int how; /* 0: get header, 1: copy, 2: decompress */ member
127 state->how = LOOK; /* look for gzip header */ in xz_reset()
197 switch (state->how) { in xz_compressed()
448 state->how = LZMA; in xz_head()
503 state->how = GZIP; in xz_head()
524 state->how = COPY; in xz_head()
554 if (state->how == GZIP) { in xz_decomp()
594 if ((state->how != GZIP) && in xz_decomp()
611 if (state->how == GZIP) { in xz_decomp()
634 state->how = LOOK; /* ready for next stream, once have is 0 (leave in xz_decomp()
[all …]
/external/python/cpython2/Lib/
Dposixfile.py153 def lock(self, how, *args): argument
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/python/cpython3/Doc/library/
Demail.examples.rst6 Here are a few examples of how to use the :mod:`email` package to read, write,
9 First, let's see how to create and send a simple text message (both the
21 Here's an example of how to send a MIME message containing a bunch of family
27 Here's an example of how to send the entire contents of a directory as an email
33 Here's an example of how to unpack a MIME message like the one
39 Here's an example of how to create an HTML message with an alternative plain
/external/ltp/testcases/open_posix_testsuite/
DQUICK-START15 * See the "BUILD" file for info on how to set up the Makefile and your machine,
38 * For additional information on how to build and run the tests in this
47 BUILD - describes how to set up your developer machine to build and test
49 The following files give developers information on how to write test
59 HOWTO_Tagging - describes how to tag files for inclusion in a release
60 HOWTO_RunTests - describes how to build and run the tests
/external/tensorflow/tensorflow/examples/wav_to_spectrogram/
DREADME.md3 This example shows how you can load audio from a .wav file, convert it to a
30 To control how the spectrogram is created, you can specify the `--window_size`
31 and `--stride` arguments, which control how wide the window used to estimate
32 frequencies is, and how widely adjacent windows are spaced.
41 Here's an example of how to use all of them together:
/external/pcre/dist2/testdata/
Dtestinput24373 /how.to how\.to/
374 how\nto how.to
376 how\x{0}to how.to
378 /^how to \^how to/
Dtestoutput24587 /how.to how\.to/
588 (*NUL)how.to how\.to
589 how\nto how.to
590 0: how\x0ato how.to
592 how\x{0}to how.to
595 /^how to \^how to/
596 (*NUL)^how to \^how to
/external/rust/crates/structopt/examples/
DREADME.md1 # Collection of examples "how to use `structopt`"
13 A basic example how to use `structopt`.
34 How to use environment variable fallback an how it interacts with `default_value`.
50 Pseudo-`git` example, shows how to use subcommands and how to document them.
/external/llvm-project/mlir/docs/Tutorials/Toy/
D_index.md5 particular, how [dialects](../../LangRef.md#dialects) can help easily support
20 introducing base MLIR concepts. Here we show how to start attaching
25 with Interfaces. Here we will show how to plug dialect specific information
34 We'll demonstrate how to add a custom type to MLIR, and how it fits in the
/external/llvm-project/llvm/docs/
DUserGuides.rst100 how to keep LLVM source code portable.
109 Information on how to write LLVM transformations and analyses.
112 Information on how to write LLVM transformations under the new pass
126 Information on how to write a new alias analysis implementation or how to
130 Information about the MemorySSA utility in LLVM, as well as how to use it.
156 Information on how to write LLVM backends for machine targets.
184 Look here to see how to add instructions and intrinsics to LLVM.
/external/webrtc/third_party/abseil-cpp/absl/synchronization/
Dmutex.cc470 : how(how_arg), in SynchWaitParams()
478 const Mutex::MuHow how; // How this thread needs to wait. member
708 static unsigned TsanFlags(Mutex::MuHow how) { in TsanFlags() argument
709 return how == kShared ? __tsan_mutex_read_lock : 0; in TsanFlags()
757 return x->waitp->how == y->waitp->how && in MuSameCondition()
942 } else if (waitp->how == kExclusive && in Enqueue()
1035 if (w->waitp->how == kExclusive) { // wake at most 1 writer in DequeueAllWakeable()
1568 MuHow how = in AwaitCommon() local
1570 ABSL_TSAN_MUTEX_PRE_UNLOCK(this, TsanFlags(how)); in AwaitCommon()
1572 how, &cond, t, nullptr /*no cvmu*/, Synch_GetPerThreadAnnotated(this), in AwaitCommon()
[all …]
/external/libtextclassifier/abseil-cpp/absl/synchronization/
Dmutex.cc472 : how(how_arg), in SynchWaitParams()
480 const Mutex::MuHow how; // How this thread needs to wait. member
710 static unsigned TsanFlags(Mutex::MuHow how) { in TsanFlags() argument
711 return how == kShared ? __tsan_mutex_read_lock : 0; in TsanFlags()
759 return x->waitp->how == y->waitp->how && in MuSameCondition()
944 } else if (waitp->how == kExclusive && in Enqueue()
1037 if (w->waitp->how == kExclusive) { // wake at most 1 writer in DequeueAllWakeable()
1569 MuHow how = in AwaitCommon() local
1571 ABSL_TSAN_MUTEX_PRE_UNLOCK(this, TsanFlags(how)); in AwaitCommon()
1573 how, &cond, t, nullptr /*no cvmu*/, Synch_GetPerThreadAnnotated(this), in AwaitCommon()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/synchronization/
Dmutex.cc472 : how(how_arg), in SynchWaitParams()
480 const Mutex::MuHow how; // How this thread needs to wait. member
710 static unsigned TsanFlags(Mutex::MuHow how) { in TsanFlags() argument
711 return how == kShared ? __tsan_mutex_read_lock : 0; in TsanFlags()
759 return x->waitp->how == y->waitp->how && in MuSameCondition()
944 } else if (waitp->how == kExclusive && in Enqueue()
1037 if (w->waitp->how == kExclusive) { // wake at most 1 writer in DequeueAllWakeable()
1569 MuHow how = in AwaitCommon() local
1571 ABSL_TSAN_MUTEX_PRE_UNLOCK(this, TsanFlags(how)); in AwaitCommon()
1573 how, &cond, t, nullptr /*no cvmu*/, Synch_GetPerThreadAnnotated(this), in AwaitCommon()
[all …]
/external/angle/third_party/abseil-cpp/absl/synchronization/
Dmutex.cc483 : how(how_arg), in SynchWaitParams()
491 const Mutex::MuHow how; // How this thread needs to wait. member
721 static unsigned TsanFlags(Mutex::MuHow how) { in TsanFlags() argument
722 return how == kShared ? __tsan_mutex_read_lock : 0; in TsanFlags()
772 return x->waitp->how == y->waitp->how && x->priority == y->priority && in MuEquivalentWaiter()
951 } else if (waitp->how == kExclusive && in Enqueue()
1044 if (w->waitp->how == kExclusive) { // wake at most 1 writer in DequeueAllWakeable()
1580 MuHow how = in AwaitCommon() local
1582 ABSL_TSAN_MUTEX_PRE_UNLOCK(this, TsanFlags(how)); in AwaitCommon()
1584 how, &cond, t, nullptr /*no cvmu*/, Synch_GetPerThreadAnnotated(this), in AwaitCommon()
[all …]
/external/openscreen/third_party/abseil/src/absl/synchronization/
Dmutex.cc472 : how(how_arg), in SynchWaitParams()
480 const Mutex::MuHow how; // How this thread needs to wait. member
710 static unsigned TsanFlags(Mutex::MuHow how) { in TsanFlags() argument
711 return how == kShared ? __tsan_mutex_read_lock : 0; in TsanFlags()
759 return x->waitp->how == y->waitp->how && in MuSameCondition()
944 } else if (waitp->how == kExclusive && in Enqueue()
1037 if (w->waitp->how == kExclusive) { // wake at most 1 writer in DequeueAllWakeable()
1569 MuHow how = in AwaitCommon() local
1571 ABSL_TSAN_MUTEX_PRE_UNLOCK(this, TsanFlags(how)); in AwaitCommon()
1573 how, &cond, t, nullptr /*no cvmu*/, Synch_GetPerThreadAnnotated(this), in AwaitCommon()
[all …]
/external/abseil-cpp/absl/synchronization/
Dmutex.cc470 : how(how_arg), in SynchWaitParams()
478 const Mutex::MuHow how; // How this thread needs to wait. member
708 static unsigned TsanFlags(Mutex::MuHow how) { in TsanFlags() argument
709 return how == kShared ? __tsan_mutex_read_lock : 0; in TsanFlags()
757 return x->waitp->how == y->waitp->how && in MuSameCondition()
942 } else if (waitp->how == kExclusive && in Enqueue()
1035 if (w->waitp->how == kExclusive) { // wake at most 1 writer in DequeueAllWakeable()
1568 MuHow how = in AwaitCommon() local
1570 ABSL_TSAN_MUTEX_PRE_UNLOCK(this, TsanFlags(how)); in AwaitCommon()
1572 how, &cond, t, nullptr /*no cvmu*/, Synch_GetPerThreadAnnotated(this), in AwaitCommon()
[all …]
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/sched_h/
Dcoverage.txt13 6 NO implementation defined on how to get the priority range
14 7 NO implementation defined on how to get the minimum priority range for a policy
16 9 NO implementation defined on how to get the other policies

12345678910>>...152