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

/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/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.h97 OSet* oset; // Per-thread order annotation information. member in struct:hb_info
128 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/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/coregrind/
H A Dm_oset.c859 // set up 'oset' for iteration so that the first key subsequently
863 void VG_(OSetGen_ResetIterAt)(AvlTree* oset, const void* k) argument
869 vg_assert(oset);
870 stackClear(oset);
872 if (!oset->root)
876 t = oset->root;
881 if (oset->cmp) {
882 cmpresS = (Word)slow_cmp(oset, k, t);
896 stackPush(oset, t, 2);
905 stackPush(oset,
[all...]
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-stat.c1184 sigset_t set, oset; local
1194 sigprocmask(SIG_BLOCK, &set, &oset);
1199 sigprocmask(SIG_SETMASK, &oset, NULL);
/external/openssh/
H A Dserverloop.c805 sigset_t oset, nset; local
811 sigprocmask(SIG_BLOCK, &nset, &oset);
820 sigprocmask(SIG_SETMASK, &oset, NULL);
/external/valgrind/coregrind/m_debuginfo/
H A Dreadelf.c875 OSet *oset; local
890 oset = VG_(OSetGen_Create)( offsetof(TempSym,key),
929 prev = VG_(OSetGen_Lookup)( oset, &key );
989 elem = VG_(OSetGen_AllocNode)(oset, sizeof(TempSym));
996 VG_(OSetGen_Insert)(oset, elem);
1000 VG_(printf)(" to-oset [%4ld]: "
1015 /* All the syms that matter are in the oset. Now pull them out,
1016 build a "standard" symbol table, and nuke the oset. */
1019 VG_(OSetGen_ResetIter)( oset );
1021 while ( (elem = VG_(OSetGen_Next)(oset)) ) {
[all...]

Completed in 364 milliseconds