Home
last modified time | relevance | path

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

12345678910>>...131

/third_party/ltp/testcases/kernel/syscalls/openat2/
Dopenat201.c13 static struct open_how *how; variable
24 struct open_how **how; member
27 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, 0, &how, sizeof(*how)},
28 {&dir_fd, TEST_FILE, O_RDONLY, S_IRUSR, 0, &how, sizeof(*how)},
29 {&dir_fd, TEST_FILE, O_WRONLY, S_IWUSR, 0, &how, sizeof(*how)},
30 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_NO_XDEV, &how, sizeof(*how)},
31 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_NO_MAGICLINKS, &how, sizeof(*how)},
32 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_NO_SYMLINKS, &how, sizeof(*how)},
33 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_BENEATH, &how, sizeof(*how)},
34 {&dir_fd, TEST_FILE, O_RDWR, S_IRWXU, RESOLVE_IN_ROOT, &how, sizeof(*how)},
[all …]
Dopenat203.c12 static struct open_how *how; variable
22 struct open_how **how; member
26 {"invalid-dfd", -1, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, 0, &how, sizeof(*how), EBADF},
27 {"invalid-pathname", AT_FDCWD, NULL, O_RDONLY | O_CREAT, S_IRUSR, 0, &how, sizeof(*how), EFAULT},
28 {"invalid-flags", AT_FDCWD, TEST_FILE, O_RDONLY, S_IWUSR, 0, &how, sizeof(*how), EINVAL},
29 {"invalid-mode", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, -1, 0, &how, sizeof(*how), EINVAL},
30 …{"invalid-resolve", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, -1, &how, sizeof(*how), EINVAL…
31 {"invalid-size-zero", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, 0, &how, 0, EINVAL},
32 …{"invalid-size-small", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, 0, &how, sizeof(*how) - 1, …
33 …{"invalid-size-big", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, 0, &how, sizeof(*how) + 1, EF…
[all …]
Dopenat202.c12 static struct open_how *how; variable
44 how->flags = O_RDONLY | O_CREAT; in run()
45 how->mode = S_IRUSR; in run()
46 how->resolve = tc->resolve; in run()
48 TEST(openat2(AT_FDCWD, tc->pathname, how, sizeof(*how))); in run()
84 {&how, .size = sizeof(*how)},
/third_party/gstreamer/gstplugins_bad/ext/sctp/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
316 #define MBTOM(how) (how) argument
368 #define M_PREPEND(m, plen, how) do { \ argument
[all …]
Duser_mbuf.c109 m_get(int how, short type) in m_get() argument
151 m_gethdr(int how, short type) in m_gethdr() argument
243 m_clget(struct mbuf *m, int how) in m_clget() argument
289 m_getm2(struct mbuf *m, int len, int how, short type, int flags, int allonebuf) in m_getm2() argument
312 mb = m_gethdr(how, type); in m_getm2()
313 MCLGET(mb, how); in m_getm2()
317 mb = m_gethdr(how, type); in m_getm2()
324 mb = m_get(how, type); in m_getm2()
373 m_uiotombuf(struct uio *uio, int how, int len, int align, int flags) in m_uiotombuf() argument
398 m = m_getm2(NULL, (int)max(total + align, 1), how, MT_DATA, flags, 0); in m_uiotombuf()
[all …]
/third_party/mksh/
Dulimit.c203 int how = SOFT | HARD, optc; in c_ulimit() local
210 how = HARD; in c_ulimit()
213 how = SOFT; in c_ulimit()
243 return (set_ulimit(rlimits[i], wp[builtin_opt.optind], how)); in c_ulimit()
246 print_ulimit(rlimits[i], how); in c_ulimit()
249 print_ulimit(rlimits[i], how); in c_ulimit()
263 set_ulimit(const struct limits *l, const char *v, int how MKSH_A_UNUSED) in set_ulimit()
304 if (how & SOFT) in set_ulimit()
306 if (how & HARD) in set_ulimit()
328 print_ulimit(const struct limits *l, int how MKSH_A_UNUSED) in print_ulimit()
[all …]
/third_party/musl/porting/linux/user/src/thread/
Dpthread_sigmask.c27 extern void intercept_pthread_sigmask(int how, sigset_t *restrict set);
51 int pthread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict old) in pthread_sigmask() argument
54 if (set && (unsigned)how - SIG_BLOCK > 2U) return EINVAL; in pthread_sigmask()
58 intercept_pthread_sigmask(how, &tmpset); in pthread_sigmask()
60 ret = -__syscall(SYS_rt_sigprocmask, how, new_set_ptr, old, _NSIG/8); in pthread_sigmask()
62 ret = -__syscall(SYS_rt_sigprocmask, how, set, old, _NSIG/8); in pthread_sigmask()
/third_party/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
/third_party/ltp/include/lapi/
Dsafe_rt_signal.h37 int how, const sigset_t *set, in safe_rt_sigprocmask() argument
42 ret = tst_syscall(__NR_rt_sigprocmask, how, set, oldset, sigsetsize); in safe_rt_sigprocmask()
46 how, set, oldset, sigsetsize); in safe_rt_sigprocmask()
50 how, set, oldset, sigsetsize, ret); in safe_rt_sigprocmask()
56 #define SAFE_RT_SIGPROCMASK(how, set, oldset, sigsetsize) \ argument
57 safe_rt_sigprocmask(__FILE__, __LINE__, how, set, oldset, sigsetsize)
Dopenat2.h51 struct open_how *how, size_t size) in openat2() argument
53 return tst_syscall(__NR_openat2, dfd, pathname, how, size); in openat2()
59 struct open_how how; member
/third_party/python/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 …]
/third_party/gstreamer/gstreamer/docs/random/wtay/
Dabstract4 and how the modularity can provide many benefits when building
9 the framework and how specific problems were solved.
17 cothreads and expand on how the number of cothread switches can
22 types between plugins. We continue with an explanation of how
27 or seek and flush events. We explain how these events work and
28 how they interact with the scheduler.
32 explain how all the pieces fit together and how we combine different
/third_party/rust/crates/tracing/examples/
DREADME.md7 + `counters`: Implements a very simple metrics system to demonstrate how
16 Fibonacci numbers, to demonstrate how the `#[instrument]` attribute can
30 + `fmt-custom-field`: Demonstrates overriding how the [`fmt`] subscriber formats
32 + `fmt-custom-event`: Demonstrates overriding how the [`fmt`] subscriber formats
34 + `fmt-multiple-writers`: demonstrates how [`fmt::Layer`] can write
41 + `tower-load`: Demonstrates how dynamically reloadable filters can be used to
43 + `journald`: Demonstrates how to use [`fmt`] and `journald` layers to output to
45 + `toggle-layers` : Demonstrates how Layers can be wrapped with an `Option` allowing
56 + `async_fn`: Demonstrates how asynchronous functions can be
71 + `hyper-echo`: Demonstrates how `tracing-log` can be used to record
[all …]
/third_party/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 …]
/third_party/libuv/src/unix/
Dpthread-fixes.c39 int uv__pthread_sigmask(int how, const sigset_t* set, sigset_t* oset) { in uv__pthread_sigmask() argument
44 return sigprocmask(how, set, oset); in uv__pthread_sigmask()
46 err = pthread_sigmask(how, set, oset); in uv__pthread_sigmask()
48 if (err == EINVAL && sigprocmask(how, set, oset) == 0) { in uv__pthread_sigmask()
/third_party/flutter/skia/third_party/externals/sdl/Xcode-iOS/Demos/
DREADME17 …and draws a large number of happy faces bouncing around the screen. Shows how you can load a bitm…
25 …Acts as a finger-paint type program. Demonstrates how you can use SDL mouse input to accept touch…
29 … which can be used as a virtual drumkit. Demonstrates how you can play .wav sounds in SDL and how
33 …e screen. If the user types ':)' a happy face is displayed. Demonstrates how to use functions ad…
37how you can use SDL on iPhone to build an OpenGL ES based application. Shows you how you can use S…
43 … the iPhone itself. See the iPhone SDL main README file for directions on how to do this. Once t…
/third_party/python/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
/third_party/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
/third_party/pcre2/pcre2/testdata/
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
Dtestinput24373 /how.to how\.to/
374 how\nto how.to
376 how\x{0}to how.to
378 /^how to \^how to/
/third_party/skia/third_party/externals/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 …]
/third_party/musl/src/thread/
Dpthread_sigmask.c5 int pthread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict old) in pthread_sigmask() argument
8 if (set && (unsigned)how - SIG_BLOCK > 2U) return EINVAL; in pthread_sigmask()
9 ret = -__syscall(SYS_rt_sigprocmask, how, set, old, _NSIG/8); in pthread_sigmask()
/third_party/musl/porting/linux/user/src/sigchain/
Dsigchain.c120 static int sigchain_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict old) in sigchain_sigmask() argument
123 if (set && (unsigned)how - SIG_BLOCK > 2U) return EINVAL; in sigchain_sigmask()
124 ret = -__syscall(SYS_rt_sigprocmask, how, set, old, _NSIG/8); in sigchain_sigmask()
456 void intercept_pthread_sigmask(int how, sigset_t *restrict set) in intercept_pthread_sigmask() argument
458 SIGCHAIN_PRINT_DEBUG("%{public}s how: %{public}d", __func__, how); in intercept_pthread_sigmask()
467 if (how == SIG_BLOCK || how == SIG_SETMASK) { in intercept_pthread_sigmask()
/third_party/libwebsockets/win32port/zlib/
Dgzread.c199 state->how = GZIP;
220 state->how = COPY;
289 state->how = LOOK; /* ready for next stream, once have is 0 (leave
309 if (state->how == LOOK) { /* look for gzip header */
315 if (state->how == COPY) { /* straight copy */
320 else if (state->how == GZIP) { /* decompress */
416 else if (state->how == LOOK || len < (state->size << 1)) {
426 else if (state->how == COPY) { /* read directly */
619 if (state->how == LOOK && state->have == 0)
/third_party/vk-gl-cts/framework/delibs/deutil/
DdeSocket.c637 int how = 0; in deSocket_shutdown() local
640 how = SD_BOTH; in deSocket_shutdown()
642 how = SD_SEND; in deSocket_shutdown()
644 how = SD_RECEIVE; in deSocket_shutdown()
646 if (shutdown(sock->handle, how) == 0) in deSocket_shutdown()
664 int how = 0; in deSocket_shutdown() local
667 how = SHUT_RDWR; in deSocket_shutdown()
669 how = SHUT_WR; in deSocket_shutdown()
671 how = SHUT_RD; in deSocket_shutdown()
673 if (shutdown(sock->handle, how) == 0) in deSocket_shutdown()

12345678910>>...131