Searched refs:grpc_error_get_int (Results 1 – 12 of 12) sorted by relevance
/third_party/grpc/test/core/iomgr/ |
D | error_test.cc | 33 GPR_ASSERT(grpc_error_get_int(error, GRPC_ERROR_INT_FILE_LINE, &i)); in test_set_get_int() 35 GPR_ASSERT(!grpc_error_get_int(error, GRPC_ERROR_INT_ERRNO, &i)); in test_set_get_int() 36 GPR_ASSERT(!grpc_error_get_int(error, GRPC_ERROR_INT_SIZE, &i)); in test_set_get_int() 40 GPR_ASSERT(grpc_error_get_int(error, GRPC_ERROR_INT_ERRNO, &i)); in test_set_get_int() 45 GPR_ASSERT(grpc_error_get_int(error, GRPC_ERROR_INT_HTTP2_ERROR, &i)); in test_set_get_int() 180 GPR_ASSERT(grpc_error_get_int(error, GRPC_ERROR_INT_ERRNO, &i)); in test_os_error() 205 GPR_ASSERT(grpc_error_get_int(error, GRPC_ERROR_INT_HTTP2_ERROR, &i)); in test_overflow() 207 GPR_ASSERT(!grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, &i)); in test_overflow() 210 GPR_ASSERT(grpc_error_get_int(error, GRPC_ERROR_INT_HTTP2_ERROR, &i)); in test_overflow()
|
/third_party/grpc/src/core/lib/transport/ |
D | error_utils.cc | 32 if (grpc_error_get_int(error, which, &unused)) { in recursively_find_error_with_field() 89 if (grpc_error_get_int(found_error, GRPC_ERROR_INT_GRPC_STATUS, &integer)) { in grpc_error_get_status() 91 } else if (grpc_error_get_int(found_error, GRPC_ERROR_INT_HTTP2_ERROR, in grpc_error_get_status() 103 if (grpc_error_get_int(found_error, GRPC_ERROR_INT_HTTP2_ERROR, &integer)) { in grpc_error_get_status() 105 } else if (grpc_error_get_int(found_error, GRPC_ERROR_INT_GRPC_STATUS, in grpc_error_get_status() 141 if (grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, &unused)) { in grpc_error_has_clear_grpc_status()
|
/third_party/grpc/test/cpp/microbenchmarks/ |
D | bm_error.cc | 127 grpc_error_get_int(GRPC_ERROR_NONE, GRPC_ERROR_INT_GRPC_STATUS, &value); in BM_ErrorGetIntFromNoError() 139 grpc_error_get_int(error.get(), GRPC_ERROR_INT_OFFSET, &value); in BM_ErrorGetMissingInt() 151 grpc_error_get_int(error.get(), GRPC_ERROR_INT_OFFSET, &value); in BM_ErrorGetPresentInt()
|
/third_party/grpc/src/core/ext/transport/chttp2/client/insecure/ |
D | channel_create_posix.cc | 70 if (grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, &integer)) { in grpc_insecure_channel_create_from_fd()
|
D | channel_create.cc | 116 if (grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, &integer)) { in grpc_insecure_channel_create()
|
/third_party/grpc/src/core/ext/transport/chttp2/client/secure/ |
D | secure_channel_create.cc | 204 if (grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, &integer)) { in grpc_secure_channel_create()
|
/third_party/grpc/src/core/lib/iomgr/ |
D | error.h | 224 bool grpc_error_get_int(grpc_error* error, grpc_error_ints which, intptr_t* p);
|
D | error.cc | 467 bool grpc_error_get_int(grpc_error* err, grpc_error_ints which, intptr_t* p) { in grpc_error_get_int() function
|
/third_party/grpc/src/core/ext/transport/chttp2/transport/ |
D | parsing.cc | 384 } else if (grpc_error_get_int(err, GRPC_ERROR_INT_STREAM_ID, &unused)) { in init_data_frame_parser() 765 } else if (grpc_error_get_int(err, GRPC_ERROR_INT_STREAM_ID, &unused)) { in parse_frame_slice()
|
D | chttp2_transport.cc | 2378 !grpc_error_get_int(error, GRPC_ERROR_INT_HTTP2_ERROR, &http2_error)) { in end_all_the_calls()
|
/third_party/grpc/src/core/ext/transport/inproc/ |
D | inproc_transport.cc | 1309 if (grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, &integer)) { in grpc_inproc_channel_create() 1324 if (grpc_error_get_int(error, GRPC_ERROR_INT_GRPC_STATUS, &integer)) { in grpc_inproc_channel_create()
|
/third_party/grpc/src/core/ext/filters/client_channel/ |
D | client_channel.cc | 2518 if (grpc_error_get_int(op->disconnect_with_error, in StartTransportOpLocked()
|