Searched refs:gpr_atm_full_fetch_add (Results 1 – 18 of 18) sorted by relevance
/external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/ |
D | grpclb_client_stats.cc | 31 gpr_atm_full_fetch_add(&num_calls_started_, (gpr_atm)1); in AddCallStarted() 36 gpr_atm_full_fetch_add(&num_calls_finished_, (gpr_atm)1); in AddCallFinished() 38 gpr_atm_full_fetch_add(&num_calls_finished_with_client_failed_to_send_, in AddCallFinished() 42 gpr_atm_full_fetch_add(&num_calls_finished_known_received_, (gpr_atm)1); in AddCallFinished() 48 gpr_atm_full_fetch_add(&num_calls_started_, (gpr_atm)1); in AddCallDroppedLocked() 49 gpr_atm_full_fetch_add(&num_calls_finished_, (gpr_atm)1); in AddCallDroppedLocked()
|
/external/grpc-grpc/include/grpc/impl/codegen/ |
D | atm_gcc_sync.h | 67 gpr_atm_full_fetch_add((p), (delta)) 68 #define gpr_atm_full_fetch_add(p, delta) (__sync_fetch_and_add((p), (delta))) macro
|
D | atm_gcc_atomic.h | 60 #define gpr_atm_full_fetch_add(p, delta) \ macro
|
D | atm_windows.h | 104 static __inline gpr_atm gpr_atm_full_fetch_add(gpr_atm* p, gpr_atm delta) { in gpr_atm_full_fetch_add() function
|
/external/grpc-grpc/src/core/lib/iomgr/ |
D | combiner.cc | 99 gpr_atm old_state = gpr_atm_full_fetch_add(&lock->state, -STATE_UNORPHANED); in start_destroy() 162 gpr_atm last = gpr_atm_full_fetch_add(&lock->state, STATE_ELEM_COUNT_LOW_BIT); in combiner_exec() 286 gpr_atm_full_fetch_add(&lock->state, -STATE_ELEM_COUNT_LOW_BIT); in grpc_combiner_continue_exec_ctx() 342 gpr_atm_full_fetch_add(&lock->state, STATE_ELEM_COUNT_LOW_BIT); in combiner_finally_exec()
|
D | iocp_windows.cc | 75 gpr_atm_full_fetch_add(&g_custom_events, -1); in grpc_iocp_work() 115 gpr_atm_full_fetch_add(&g_custom_events, 1); in grpc_iocp_kick()
|
D | call_combiner.cc | 74 gpr_atm_full_fetch_add(&call_combiner->size, (gpr_atm)1)); in grpc_call_combiner_start() 109 gpr_atm_full_fetch_add(&call_combiner->size, (gpr_atm)-1)); in grpc_call_combiner_stop()
|
D | resource_quota.cc | 807 gpr_atm old = gpr_atm_full_fetch_add(&resource_user->refs, -amount); in ru_unref_by() 823 if (gpr_atm_full_fetch_add(&resource_user->shutdown, 1) == 0) { in grpc_resource_user_shutdown()
|
D | ev_epollsig_linux.cc | 329 if (1 == gpr_atm_full_fetch_add(&pi->ref_count, -1)) { in pi_unref() 762 gpr_atm old = gpr_atm_full_fetch_add(&fd->refst, -n);
|
D | ev_epollex_linux.cc | 393 gpr_atm old = gpr_atm_full_fetch_add(&fd->refst, -n);
|
D | ev_poll_posix.cc | 396 gpr_atm old = gpr_atm_full_fetch_add(&fd->refst, -n);
|
/external/grpc-grpc/test/core/util/ |
D | port_isolated_runtime_environment.cc | 48 static_cast<int>(gpr_atm_full_fetch_add(&s_pick_counter, 1)); in grpc_pick_unused_port_or_die()
|
/external/grpc-grpc/src/core/lib/surface/ |
D | completion_queue.cc | 404 if (gpr_atm_full_fetch_add(&cqd->pending_events, -1) == 1) { in grpc_completion_queue_thread_local_cache_flush() 736 if (gpr_atm_full_fetch_add(&cqd->pending_events, -1) == 1) { 796 if (gpr_atm_full_fetch_add(&cqd->pending_events, -1) == 1) { 854 if (gpr_atm_full_fetch_add(&cqd->pending_events, -1) == 1) { 1099 if (gpr_atm_full_fetch_add(&cqd->pending_events, -1) == 1) { 1334 if (gpr_atm_full_fetch_add(&cqd->pending_events, -1) == 1) { 1368 if (gpr_atm_full_fetch_add(&cqd->pending_events, -1) == 1) {
|
/external/grpc-grpc/src/core/lib/gpr/ |
D | sync.cc | 104 gpr_atm prior = gpr_atm_full_fetch_add(&r->count, -1); in gpr_unref()
|
/external/grpc-grpc/src/core/ext/filters/max_age/ |
D | max_age_filter.cc | 155 if (gpr_atm_full_fetch_add(&chand->call_count, 1) == 0) { in increase_call_count() 181 if (gpr_atm_full_fetch_add(&chand->call_count, -1) == 1) { in decrease_call_count()
|
/external/grpc-grpc/src/core/lib/transport/ |
D | metadata.cc | 421 const gpr_atm prev_refcount = gpr_atm_full_fetch_add(&md->refcnt, -1); in grpc_mdelem_unref() 446 const gpr_atm prev_refcount = gpr_atm_full_fetch_add(&md->refcnt, -1); in grpc_mdelem_unref()
|
/external/grpc-grpc/src/core/lib/slice/ |
D | slice_intern.cc | 97 if (1 == gpr_atm_full_fetch_add(&s->refcnt, -1)) { in interned_slice_unref()
|
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
D | subchannel.cc | 205 gpr_atm old_val = barrier ? gpr_atm_full_fetch_add(&c->ref_pair, delta) in ref_mutate()
|