/external/ltp/testcases/kernel/containers/pidns/ |
D | pidns20.c | 84 sigset_t newset; in child_fn() local 102 sigemptyset(&newset); in child_fn() 103 sigaddset(&newset, SIGUSR1); in child_fn() 104 if (sigprocmask(SIG_BLOCK, &newset, 0) == -1) { in child_fn() 134 sigprocmask(SIG_UNBLOCK, &newset, 0); in child_fn()
|
D | pidns13.c | 74 sigset_t newset; in child_fn() local 123 sigemptyset(&newset); in child_fn() 124 sigaddset(&newset, SIGUSR1); in child_fn() 127 if (sigtimedwait(&newset, &info, &timeout) != SIGUSR1) { in child_fn()
|
/external/libxml2/ |
D | xpointer.c | 802 xmlLocationSetPtr newset; in xmlXPtrNewLocationSetNodeSet() local 804 newset = xmlXPtrLocationSetCreate(NULL); in xmlXPtrNewLocationSetNodeSet() 805 if (newset == NULL) in xmlXPtrNewLocationSetNodeSet() 809 xmlXPtrLocationSetAdd(newset, in xmlXPtrNewLocationSetNodeSet() 812 ret->user = (void *) newset; in xmlXPtrNewLocationSetNodeSet() 1769 xmlLocationSetPtr newset = NULL; in xmlXPtrStartPointFunction() local 1790 newset = xmlXPtrLocationSetCreate(NULL); in xmlXPtrStartPointFunction() 1791 if (newset == NULL) { in xmlXPtrStartPointFunction() 1814 xmlXPtrFreeLocationSet(newset); in xmlXPtrStartPointFunction() 1830 xmlXPtrLocationSetAdd(newset, point); in xmlXPtrStartPointFunction() [all …]
|
D | xpath.c | 13163 xmlNodeSetPtr newset; in xmlXPathCompOpEvalFilterFirst() local 13170 newset = xmlXPathNodeSetCreate(NULL); in xmlXPathCompOpEvalFilterFirst() 13197 xmlXPathFreeNodeSet(newset); in xmlXPathCompOpEvalFilterFirst() 13207 if (xmlXPathNodeSetAdd(newset, oldset->nodeTab[i]) < 0) in xmlXPathCompOpEvalFilterFirst() 13230 if (newset->nodeNr > 0) { in xmlXPathCompOpEvalFilterFirst() 13231 *first = *(newset->nodeTab); in xmlXPathCompOpEvalFilterFirst() 13247 valuePush(ctxt, xmlXPathCacheWrapNodeSet(ctxt->context, newset)); in xmlXPathCompOpEvalFilterFirst() 13611 xmlNodeSetPtr newset = NULL; in xmlXPathCompOpEval() local 13849 newset = xmlXPathNodeSetCreate(NULL); in xmlXPathCompOpEval() 13907 xmlXPathFreeNodeSet(newset); in xmlXPathCompOpEval() [all …]
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl33.c | 61 static sigset_t newset, oldset; variable 138 sigemptyset(&newset); in setup() 139 sigaddset(&newset, SIGIO); in setup() 141 if (sigprocmask(SIG_SETMASK, &newset, &oldset) < 0) in setup() 171 TEST(sigtimedwait(&newset, NULL, &timeout)); in do_test()
|
D | fcntl31.c | 68 static sigset_t newset, oldset; variable 147 sigemptyset(&newset); in setup() 148 sigaddset(&newset, SIGUSR1); in setup() 149 sigaddset(&newset, SIGIO); in setup() 151 if (sigprocmask(SIG_SETMASK, &newset, &oldset) < 0) in setup() 356 ret = sigtimedwait(&newset, NULL, &timeout); in check_io_signal()
|
/external/python/cpython3/Lib/ |
D | _weakrefset.py | 127 newset = self.copy() 128 newset.difference_update(other) 129 return newset 175 newset = self.copy() 176 newset.symmetric_difference_update(other) 177 return newset
|
/external/python/cpython2/Lib/ |
D | _weakrefset.py | 129 newset = self.copy() 130 newset.difference_update(other) 131 return newset 183 newset = self.copy() 184 newset.symmetric_difference_update(other) 185 return newset
|
/external/valgrind/coregrind/ |
D | m_signals.c | 1315 vki_sigset_t* newset, in do_setmask() argument 1324 newset, newset ? format_sigset(newset) : "NULL" ); in do_setmask() 1333 if (newset) { in do_setmask() 1334 do_sigprocmask_bitops (how, &VG_(threads)[tid].sig_mask, newset ); in do_setmask()
|
/external/mksh/src/ |
D | misc.c | 217 change_flag(enum sh_flag f, int what, bool newset) in change_flag() argument 220 unsigned char newval = (newset ? 1 : 0); in change_flag() 227 Flag(f) = newval = (newset ? 1 : 0); in change_flag()
|
/external/dhcpcd-6.8.2/ |
D | dhcpcd.c | 1257 sigset_t newset; in signal_init() local 1263 sigfillset(&newset); in signal_init() 1264 if (sigprocmask(SIG_SETMASK, &newset, oldset) == -1) in signal_init()
|