Searched defs:oset (Results 1 - 16 of 16) sorted by relevance

/external/openssl/crypto/
H A Ds390xcap.c16 sigset_t oset; local
28 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
36 sigprocmask(SIG_SETMASK,&oset,NULL);
H A Darmcap.c75 sigset_t oset; local
100 sigprocmask(SIG_SETMASK,&ill_act.sa_mask,&oset);
156 sigprocmask(SIG_SETMASK,&oset,NULL);
H A Dsparcv9cap.c172 sigset_t all_masked,oset; local
196 sigprocmask(SIG_SETMASK,&all_masked,&oset);
234 sigprocmask(SIG_SETMASK,&oset,NULL);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsignal.c100 pthread_sigmask (int how, sigset_t const *set, sigset_t * oset) argument
127 if (oset != NULL)
129 memcpy (oset, &(thread.p->sigmask), sizeof (sigset_t));
/external/libedit/src/
H A Dsig.c72 sigset_t nset, oset; local
76 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
105 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
117 sigset_t *nset, oset; local
128 (void) sigprocmask(SIG_BLOCK, nset, &oset);
136 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
161 sigset_t oset; local
168 (void) sigprocmask(SIG_BLOCK, &el->el_signal->sig_set, &oset);
177 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
188 sigset_t oset; local
[all...]
H A Del.c590 sigset_t oset, nset; local
594 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
600 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
H A Dterminal.c864 sigset_t oset, nset; local
869 (void) sigprocmask(SIG_BLOCK, &nset, &oset);
935 (void) sigprocmask(SIG_SETMASK, &oset, NULL);
/external/valgrind/main/drd/
H A Dpub_drd_bitmap.h72 OSet* oset; member in struct:bitmap
H A Ddrd_barrier.c134 p->oset[i] = VG_(OSetGen_Create)(0, 0, VG_(malloc), "drd.barrier.bi.1",
141 * all the nodes in the OSet p->oset.
149 OSet* oset; local
166 oset = p->oset[1 - (p->pre_iteration & 1)];
167 VG_(OSetGen_ResetIter)(oset);
168 for ( ; (q = VG_(OSetGen_Next)(oset)) != 0; ) {
179 VG_(OSetGen_Destroy)(p->oset[i]);
180 p->oset[i] = NULL;
334 OSet* oset; local
411 OSet* oset; local
[all...]
H A Ddrd_clientobj.h96 OSet* oset; // Per-thread order annotation information. member in struct:hb_info
127 OSet* oset[2]; // Per-thread barrier information for the latest member in struct:barrier_info
H A Ddrd_rwlock.c144 DRD_(lookup_or_insert_node)(OSet* oset, const UWord tid) argument
148 q = VG_(OSetGen_Lookup)(oset, &tid);
151 q = VG_(OSetGen_AllocNode)(oset, sizeof(*q));
157 VG_(OSetGen_Insert)(oset, q);
/external/tcpdump/
H A Dprint-ascii.c92 register const u_char *cp, register u_int length, register u_int oset)
115 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
118 oset += HEXDUMP_BYTES_PER_LINE;
132 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
149 register u_int oset)
158 (void)printf("%s0x%04x: ", ident, oset);
159 oset += HEXDUMP_BYTES_PER_LINE;
166 (void)printf("%s0x%04x: ", ident, oset);
91 hex_and_ascii_print_with_offset(register const char *ident, register const u_char *cp, register u_int length, register u_int oset) argument
148 hex_print_with_offset(register const char *ident, register const u_char *cp, register u_int length, register u_int oset) argument
/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c85 void example1singleset(OSet* oset, char *descr) argument
94 vg_assert( ! VG_(OSetGen_Contains)(oset, &v) );
95 vg_assert( ! VG_(OSetGen_Lookup)(oset, &v) );
96 vg_assert( ! VG_(OSetGen_Remove)(oset, &v) );
97 vg_assert( ! VG_(OSetGen_Next)(oset) );
98 vg_assert( 0 == VG_(OSetGen_Size)(oset) );
103 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Word));
118 VG_(OSetGen_Insert)(oset, vs[i]);
122 vg_assert( NN == VG_(OSetGen_Size)(oset) );
126 assert( VG_(OSetGen_Contains)(oset, v
260 OSet *oset, *oset_empty_clone; local
310 OSet* oset = VG_(OSetWord_Create)(allocate_node, "oset_test.2", free_node); local
469 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first), local
[all...]
/external/valgrind/main/coregrind/
H A Dm_oset.c861 // set up 'oset' for iteration so that the first key subsequently
865 void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k) argument
871 vg_assert(oset);
872 stackClear(oset);
874 if (!oset->root)
878 t = oset->root;
883 if (oset->cmp) {
884 cmpresS = (Word)slow_cmp(oset, k, t);
898 stackPush(oset, t, 2);
907 stackPush(oset,
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-stat.c1192 sigset_t set, oset; local
1202 sigprocmask(SIG_BLOCK, &set, &oset);
1207 sigprocmask(SIG_SETMASK, &oset, NULL);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadelf.c820 OSet *oset; local
836 oset = VG_(OSetGen_Create)( offsetof(TempSym,key),
840 vg_assert(oset);
875 prev = VG_(OSetGen_Lookup)( oset, &key );
935 elem = VG_(OSetGen_AllocNode)(oset, sizeof(TempSym));
943 VG_(OSetGen_Insert)(oset, elem);
947 VG_(printf)(" to-oset [%4ld]: "
962 /* All the syms that matter are in the oset. Now pull them out,
963 build a "standard" symbol table, and nuke the oset. */
966 VG_(OSetGen_ResetIter)( oset );
[all...]

Completed in 475 milliseconds