Home
last modified time | relevance | path

Searched refs:pops (Results 1 – 3 of 3) sorted by relevance

/xnu-11215/tests/
H A Dkqueue_timer_tests.c237 uint64_t pops = 0; in test_interval_kevent() local
249 pops += (uint64_t)kev.data; in test_interval_kevent()
260 if (pops > expected_pops + (expected_pops / 20) || in test_interval_kevent()
261 pops < expected_pops - (expected_pops / 20)) { in test_interval_kevent()
262 T_FAIL("%s() usec:%d (saw %lld of %lld expected pops)", __func__, usec, pops, expected_pops); in test_interval_kevent()
265 T_PASS("%s() usec:%d (saw %lld pops)", __func__, usec, pops); in test_interval_kevent()
310 uint64_t pops = (uint64_t) kev.data; in test_repeating_kevent() local
313 if (pops > expected_pops + (expected_pops / 20) || in test_repeating_kevent()
314 pops < expected_pops - (expected_pops / 20)) { in test_repeating_kevent()
315 T_FAIL("%s() usec:%d (saw %lld of %lld expected pops)", __func__, usec, pops, expected_pops); in test_repeating_kevent()
[all …]
/xnu-11215/osfmk/UserNotification/
H A DUNDRequest.defs84 * Just pops up a notice with a single OK button and the label and message
/xnu-11215/bsd/dev/dtrace/
H A Ddtrace.c8665 if ((pops->dtps_provide == NULL && pops->dtps_provide_module == NULL) || in dtrace_register()
8666 pops->dtps_enable == NULL || pops->dtps_disable == NULL || in dtrace_register()
8667 pops->dtps_destroy == NULL || in dtrace_register()
8668 ((pops->dtps_resume == NULL) != (pops->dtps_suspend == NULL))) { in dtrace_register()
8692 pops->dtps_usermode == NULL) { in dtrace_register()
8706 provider->dtpv_pops = *pops; in dtrace_register()
8708 if (pops->dtps_provide == NULL) { in dtrace_register()
8714 ASSERT(pops->dtps_provide != NULL); in dtrace_register()
8719 if (pops->dtps_suspend == NULL) { in dtrace_register()
8720 ASSERT(pops->dtps_resume == NULL); in dtrace_register()
[all …]