cbs                72 opal/mca/event/libevent2022/libevent/evthread.c evthread_set_lock_callbacks(const struct evthread_lock_callbacks *cbs)
cbs                78 opal/mca/event/libevent2022/libevent/evthread.c 	if (!cbs) {
cbs                87 opal/mca/event/libevent2022/libevent/evthread.c 		if (target->lock_api_version == cbs->lock_api_version &&
cbs                88 opal/mca/event/libevent2022/libevent/evthread.c 			target->supported_locktypes == cbs->supported_locktypes &&
cbs                89 opal/mca/event/libevent2022/libevent/evthread.c 			target->alloc == cbs->alloc &&
cbs                90 opal/mca/event/libevent2022/libevent/evthread.c 			target->free == cbs->free &&
cbs                91 opal/mca/event/libevent2022/libevent/evthread.c 			target->lock == cbs->lock &&
cbs                92 opal/mca/event/libevent2022/libevent/evthread.c 			target->unlock == cbs->unlock) {
cbs               100 opal/mca/event/libevent2022/libevent/evthread.c 	if (cbs->alloc && cbs->free && cbs->lock && cbs->unlock) {
cbs               101 opal/mca/event/libevent2022/libevent/evthread.c 		memcpy(target, cbs, sizeof(ompi__evthread_lock_fns));
cbs               109 opal/mca/event/libevent2022/libevent/evthread.c evthread_set_condition_callbacks(const struct evthread_condition_callbacks *cbs)
cbs               115 opal/mca/event/libevent2022/libevent/evthread.c 	if (!cbs) {
cbs               125 opal/mca/event/libevent2022/libevent/evthread.c 		if (target->condition_api_version == cbs->condition_api_version &&
cbs               126 opal/mca/event/libevent2022/libevent/evthread.c 			target->alloc_condition == cbs->alloc_condition &&
cbs               127 opal/mca/event/libevent2022/libevent/evthread.c 			target->free_condition == cbs->free_condition &&
cbs               128 opal/mca/event/libevent2022/libevent/evthread.c 			target->signal_condition == cbs->signal_condition &&
cbs               129 opal/mca/event/libevent2022/libevent/evthread.c 			target->wait_condition == cbs->wait_condition) {
cbs               137 opal/mca/event/libevent2022/libevent/evthread.c 	if (cbs->alloc_condition && cbs->free_condition &&
cbs               138 opal/mca/event/libevent2022/libevent/evthread.c 	    cbs->signal_condition && cbs->wait_condition) {
cbs               139 opal/mca/event/libevent2022/libevent/evthread.c 		memcpy(target, cbs, sizeof(ompi__evthread_cond_fns));
cbs               142 opal/mca/event/libevent2022/libevent/evthread.c 		ompi__evthread_cond_fns.alloc_condition = cbs->alloc_condition;
cbs               143 opal/mca/event/libevent2022/libevent/evthread.c 		ompi__evthread_cond_fns.free_condition = cbs->free_condition;
cbs               144 opal/mca/event/libevent2022/libevent/evthread.c 		ompi__evthread_cond_fns.signal_condition = cbs->signal_condition;
cbs               269 opal/mca/event/libevent2022/libevent/evthread.c 	struct evthread_lock_callbacks cbs = {
cbs               281 opal/mca/event/libevent2022/libevent/evthread.c 	memcpy(&ompi__evthread_lock_fns, &cbs,
cbs               164 opal/mca/event/libevent2022/libevent/evthread_pthread.c 	struct evthread_lock_callbacks cbs = {
cbs               185 opal/mca/event/libevent2022/libevent/evthread_pthread.c 	evthread_set_lock_callbacks(&cbs);
cbs               300 opal/mca/event/libevent2022/libevent/evthread_win32.c 	struct evthread_lock_callbacks cbs = {
cbs               327 opal/mca/event/libevent2022/libevent/evthread_win32.c 	evthread_set_lock_callbacks(&cbs);
cbs               413 opal/mca/event/libevent2022/libevent/test/regress_thread.c 	struct deferred_cb cbs[CB_COUNT];
cbs               437 opal/mca/event/libevent2022/libevent/test/regress_thread.c 		event_deferred_cb_init(&data->cbs[i], deferred_callback, NULL);
cbs               438 opal/mca/event/libevent2022/libevent/test/regress_thread.c 		event_deferred_cb_schedule(data->queue, &data->cbs[i]);
cbs               370 opal/runtime/opal_progress.c static int opal_progress_find_cb (opal_progress_callback_t cb, volatile opal_progress_callback_t *cbs,
cbs               374 opal/runtime/opal_progress.c         if (cbs[i] == cb) {
cbs               382 opal/runtime/opal_progress.c static int _opal_progress_register (opal_progress_callback_t cb, volatile opal_progress_callback_t **cbs,
cbs               387 opal/runtime/opal_progress.c     if (OPAL_ERR_NOT_FOUND != opal_progress_find_cb (cb, *cbs, *cbs_len)) {
cbs               400 opal/runtime/opal_progress.c         if (*cbs) {
cbs               402 opal/runtime/opal_progress.c             memcpy (tmp, (void *) *cbs, sizeof(tmp[0]) * *cbs_size);
cbs               412 opal/runtime/opal_progress.c         old = (opal_progress_callback_t *) opal_atomic_swap_ptr ((opal_atomic_intptr_t *) cbs, (intptr_t) tmp);
cbs               420 opal/runtime/opal_progress.c     cbs[0][*cbs_len] = cb;