HomeSort by relevance Sort by last modified time
    Searched refs:gpr_mu (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /external/grpc-grpc/src/core/lib/gprpp/
mutex_lock.h 30 explicit MutexLock(gpr_mu* mu) : mu_(mu) { gpr_mu_lock(mu); }
37 gpr_mu* const mu_;
  /external/grpc-grpc/src/core/lib/gpr/
sync_posix.cc 36 void gpr_mu_init(gpr_mu* mu) {
40 void gpr_mu_destroy(gpr_mu* mu) { GPR_ASSERT(pthread_mutex_destroy(mu) == 0); }
42 void gpr_mu_lock(gpr_mu* mu) {
50 void gpr_mu_unlock(gpr_mu* mu) {
55 int gpr_mu_trylock(gpr_mu* mu) {
75 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) {
sync_windows.cc 29 void gpr_mu_init(gpr_mu* mu) {
34 void gpr_mu_destroy(gpr_mu* mu) { DeleteCriticalSection(&mu->cs); }
36 void gpr_mu_lock(gpr_mu* mu) {
42 void gpr_mu_unlock(gpr_mu* mu) {
47 int gpr_mu_trylock(gpr_mu* mu) {
67 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) {
mpscq.h 66 gpr_mu mu;
  /external/grpc-grpc/include/grpc/impl/codegen/
sync_custom.h 30 typedef GPR_CUSTOM_MU_TYPE gpr_mu; typedef
sync_posix.h 28 typedef pthread_mutex_t gpr_mu; typedef
sync_windows.h 29 } gpr_mu; typedef in typeref:struct:__anon22936
  /external/grpc-grpc/src/core/lib/security/credentials/jwt/
jwt_credentials.h 32 gpr_mu cache_mu;
  /external/grpc-grpc/src/core/tsi/
alts_transport_security.h 33 gpr_mu mu;
  /external/grpc-grpc/test/core/iomgr/
endpoint_tests.h 41 grpc_pollset* pollset, gpr_mu* mu);
  /external/grpc-grpc/src/core/lib/security/credentials/plugin/
plugin_credentials.h 42 gpr_mu mu;
  /external/grpc-grpc/test/core/util/
test_tcp_server.h 29 gpr_mu* mu;
  /external/grpc-grpc/include/grpc/support/
sync.h 36 gpr_mu are uninitialized when first declared. */
39 GPRAPI void gpr_mu_init(gpr_mu* mu);
43 GPRAPI void gpr_mu_destroy(gpr_mu* mu);
48 GPRAPI void gpr_mu_lock(gpr_mu* mu);
52 GPRAPI void gpr_mu_unlock(gpr_mu* mu);
58 GPRAPI int gpr_mu_trylock(gpr_mu* mu);
80 GPRAPI int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline);
185 gpr_mu mu; /* Protects all fields below.
  /external/grpc-grpc/src/core/lib/iomgr/
wakeup_fd_cv.h 58 gpr_mu mu;
pollset.h 44 void (*init)(grpc_pollset* pollset, gpr_mu** mu);
61 void grpc_pollset_init(grpc_pollset* pollset, gpr_mu** mu);
executor.h 29 gpr_mu mu;
pollset.cc 33 void grpc_pollset_init(grpc_pollset* pollset, gpr_mu** mu) {
socket_windows.h 78 gpr_mu state_mu;
pollset_custom.cc 41 gpr_mu mu;
50 static void pollset_init(grpc_pollset* pollset, gpr_mu** mu) {
  /external/grpc-grpc/include/grpcpp/impl/codegen/
core_codegen.h 56 void gpr_mu_init(gpr_mu* mu) override;
57 void gpr_mu_destroy(gpr_mu* mu) override;
58 void gpr_mu_lock(gpr_mu* mu) override;
59 void gpr_mu_unlock(gpr_mu* mu) override;
62 int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu, gpr_timespec abs_deadline) override;
core_codegen_interface.h 71 virtual void gpr_mu_init(gpr_mu* mu) = 0;
72 virtual void gpr_mu_destroy(gpr_mu* mu) = 0;
73 virtual void gpr_mu_lock(gpr_mu* mu) = 0;
74 virtual void gpr_mu_unlock(gpr_mu* mu) = 0;
77 virtual int gpr_cv_wait(gpr_cv* cv, gpr_mu* mu,
  /external/grpc-grpc/src/core/lib/channel/
channelz_registry.h 86 gpr_mu mu_;
  /external/grpc-grpc/src/core/lib/security/credentials/alts/
check_gcp_environment_linux.cc 36 static gpr_mu g_mu;
  /external/grpc-grpc/src/php/ext/grpc/
channel.h 34 gpr_mu mu;
  /external/grpc-grpc/src/cpp/common/
core_codegen.cc 80 void CoreCodegen::gpr_mu_init(gpr_mu* mu) { ::gpr_mu_init(mu); };
81 void CoreCodegen::gpr_mu_destroy(gpr_mu* mu) { ::gpr_mu_destroy(mu); }
82 void CoreCodegen::gpr_mu_lock(gpr_mu* mu) { ::gpr_mu_lock(mu); }
83 void CoreCodegen::gpr_mu_unlock(gpr_mu* mu) { ::gpr_mu_unlock(mu); }
86 int CoreCodegen::gpr_cv_wait(gpr_cv* cv, gpr_mu* mu,

Completed in 1185 milliseconds

1 2 3 4 5 6