HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 276 - 300 of 5198) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/std/algorithms/alg.sorting/alg.merge/
inplace_merge.pass.cpp 40 void set(int i) { i_ = i; } function in struct:S
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
LockInterface.java 91 * Returns true if the lock state can be set.
94 * @return 0x0 if the lock state was set to |val| and an error code otherwise.
96 short set(byte val); method in interface:LockInterface
  /external/llvm/include/llvm/MC/
MachineLocation.h 60 void set(unsigned R) { function
66 void set(unsigned R, int O) { function
  /external/llvm/include/llvm/Support/
ThreadLocal.h 54 // set - Associates a pointer to an object with the current thread.
55 void set(T* d) { setInstance(d); } function in class:llvm::sys::ThreadLocal
  /external/ltp/testcases/kernel/mem/shmt/
shmt04.c 59 sigset_t set; variable
74 sigemptyset(&set);
75 sigaddset(&set, SIGUSR1);
76 sigprocmask(SIG_BLOCK, &set, NULL);
151 sigwait(&set, &sig);
shmt06.c 60 sigset_t set; variable
73 sigemptyset(&set);
74 sigaddset(&set, SIGUSR1);
75 sigprocmask(SIG_BLOCK, &set, NULL);
150 sigwait(&set, &sig);
  /external/ltp/testcases/kernel/syscalls/rt_sigprocmask/
rt_sigprocmask01.c 25 /* The set value stores the signal mask of the pending signals. */
31 /* The set of blocked signals is the union of the current set*/
32 /* and the set argument. */
34 /* The signals in set are removed from the current set of */
38 /* The set of blocked signals is set to the set argument. */
81 sigset_t set, oset local
    [all...]
rt_sigprocmask02.c 25 /* The set value stores the signal mask of the pending signals. */
31 /* The set of blocked signals is the union of the current set*/
32 /* and the set argument. */
34 /* The signals in set are removed from the current set of */
38 /* The set of blocked signals is set to the set argument. */
51 /* An invalid set, act, or oact was specified. *
76 static sigset_t set; variable
    [all...]
  /external/ltp/testcases/kernel/syscalls/rt_sigsuspend/
rt_sigsuspend01.c 54 sigset_t set, set1, set2; local
65 if (sigemptyset(&set) < 0)
85 TEST(result = ltp_syscall(__NR_rt_sigsuspend, &set,
  /external/ltp/testcases/kernel/syscalls/sigprocmask/
sigprocmask01.c 31 * calling process's set of blocked/unblocked signals.
94 sigset_t set; /* signal set to hold signal lists */ variable
115 TEST(sigprocmask(SIG_BLOCK, &set, 0));
151 * is the member of signal set.
168 &set, 0) == -1) {
183 /* set sig_catch back to 0 */
198 * Initialise signal set with the list that includes/excludes
200 * Set the signal handler to catch SIGINT signal.
215 if (sigemptyset(&set) == -1)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_settime/
4-1.c 16 * - set time back to T0
49 sigset_t set; local
59 * set up sigevent for timer
60 * set up signal set for sigwait
65 if (sigemptyset(&set) != 0) {
70 if (sigaddset(&set, SIGTOTEST) != 0) {
75 if (sigprocmask(SIG_BLOCK, &set, NULL) == -1) {
107 if (sigwait(&set, &sig) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/
1-1.c 12 * - Set up a repeating timer to expire with signal SIGTOTEST.
46 sigset_t set; local
55 * set up handler for SIGTOTEST
67 * set up timer to send SIGTOTEST
87 if (sigemptyset(&set) != 0) {
91 if (sigaddset(&set, SIGTOTEST) != 0) {
95 if (sigprocmask(SIG_SETMASK, &set, NULL) != 0) {
105 if (sigprocmask(SIG_UNBLOCK, &set, NULL) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/
3-3.c 34 sigset_t set; local
44 if (sigemptyset(&set) != 0) {
49 if (sigaddset(&set, SIGTOTEST) != 0) {
54 if (sigprocmask(SIG_SETMASK, &set, NULL) != 0) {
65 * First set up timer to be blocked
83 * Second, set value.it_value = 0 and set up handler to catch
110 if (sigprocmask(SIG_UNBLOCK, &set, NULL) != 0) {
6-1.c 11 * - Set up a timer with an it_value < it_interval.
38 sigset_t set; local
42 * set up signal set containing SIGTOTEST that will be used
43 * in call to sigwait immediately after timer is set
46 if (sigemptyset(&set) == -1) {
51 if (sigaddset(&set, SIGTOTEST) == -1) {
56 if (sigprocmask(SIG_BLOCK, &set, NULL) == -1) {
62 * set up timer to perform action SIGTOTEST on expiration
98 if (sigwait(&set, &sig) == -1)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/functional/timers/timers/
twoptimers.c 8 * Test having two timers in different processes set to expire at the
40 sigset_t set; local
44 if (sigemptyset(&set) == -1) {
49 if (sigaddset(&set, SIGABRT) == -1) {
72 if (sigwait(&set, &sig) == -1) {
85 sigset_t set; local
90 if (sigemptyset(&set) == -1) {
95 if (sigaddset(&set, SIGALRM) == -1) {
118 if (sigwait(&set, &sig) == -1) {
  /external/mesa3d/src/mesa/main/
stencil.c 34 * front OR back face state (as set by glActiveStencilFaceEXT) is set.
97 * Set the clear value for the stencil buffer.
120 * Set the function and reference value for stencil testing.
152 /* set both front and back state */
175 * Set the function and reference value for stencil testing.
219 /* set both front and back state */
242 * Set the stencil writing mask.
277 /* set both front and back state */
294 * Set the stencil test actions
398 GLboolean set = GL_FALSE; local
    [all...]
  /external/mesa3d/src/util/
set.h 43 struct set { struct
56 struct set *
62 _mesa_set_destroy(struct set *set,
66 _mesa_set_add(struct set *set, const void *key);
68 _mesa_set_add_pre_hashed(struct set *set, uint32_t hash, const void *key);
71 _mesa_set_search(const struct set *set, const void *key)
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AlloCommandHandler.java 61 invocationRecord.set(NUMBER_OF_BYTES_KEY, Integer.valueOf(parametersString));
65 invocationRecord.set(NUMBER_OF_BYTES_KEY, Integer.valueOf(tokenizer.nextToken()));
67 invocationRecord.set(RECORD_SIZE_KEY, Integer.valueOf(tokenizer.nextToken()));
EprtCommandHandler.java 66 invocationRecord.set(HOST_KEY, client.host);
67 invocationRecord.set(PORT_KEY, new Integer(client.port));
HelpCommandHandler.java 55 invocationRecord.set(COMMAND_NAME_KEY, command.getOptionalString(0));
60 * Set the help message String to be returned by this command
ListCommandHandler.java 71 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
82 * Set the contents of the directoryListing to send back on the data connection for this command.
85 * @param directoryListing - the directoryListing to set
MkdCommandHandler.java 51 invocationRecord.set(PATHNAME_KEY, pathname);
NlstCommandHandler.java 48 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
59 * Set the contents of the directoryListing to send back on the data connection for this command.
62 * @param directoryListing - the directoryListing to set
PortCommandHandler.java 63 invocationRecord.set(HOST_KEY, client.host);
64 invocationRecord.set(PORT_KEY, new Integer(client.port));
RestCommandHandler.java 51 invocationRecord.set(MARKER_KEY, marker);

Completed in 276 milliseconds

<<11121314151617181920>>