Home
last modified time | relevance | path

Searched refs:_code (Results 1 – 25 of 29) sorted by relevance

12

/third_party/grpc/src/python/grpcio_testing/grpc_testing/_channel/
D_rpc_state.py31 self._code = None
38 if self._code is None:
47 if self._code is None and not self._requests_closed:
56 if self._code is None and not self._requests_closed:
63 if self._code is grpc.StatusCode.OK:
73 elif self._code is None:
82 self._code, self._details)
87 if self._code is None:
90 return self._trailing_metadata, self._code, self._details
94 if self._code is None:
[all …]
D_invocation.py50 def _code(handler): function
84 return _code(self._handler)
114 return _code(self._handler)
233 return _code(self._handler)
321 return _code(self._handler)
/third_party/grpc/src/python/grpcio_testing/grpc_testing/_server/
D_handler.py64 self._code = None
78 if self._code is None:
92 return self._code is None
102 self._code = code
110 if self._code is None:
120 if self._code is None:
140 elif self._code is None:
152 if self._code is None:
153 self._code = _CLIENT_INACTIVE
165 if self._code is _CLIENT_INACTIVE:
[all …]
/third_party/boost/boost/outcome/experimental/status-code/
Dstatus_error.hpp73 status_code<DomainType> _code; member in status_error
84 : _code(static_cast<status_code<DomainType> &&>(code)) in status_error()
85 , _msgref(_code.message()) in status_error()
93 const status_code_type &code() const & { return _code; } in code()
95 status_code_type &code() & { return _code; } in code()
97 const status_code_type &&code() const && { return _code; } in code()
99 status_code_type &&code() && { return _code; } in code()
/third_party/libunwind/doc/
Dunw_strerror.tex15 \Type{const char *} \Func{unw\_strerror}(\Type{int} \Var{err\_code});\\
19 The \Func{unw\_strerror}() routine maps the (negative) \Var{err\_code}
24 The message that corresponds to \Var{err\_code} or, if the
25 \Var{err\_code} has no corresponding message, the text "invalid error
/third_party/harfbuzz/src/
Dhb-machinery.hh96 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ argument
98 { _code; }
99 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code) argument
100 # define DEFINE_COMPILES_ASSERTION(_code) _DEFINE_COMPILES_ASSERTION0 (__LINE__, _code) argument
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-machinery.hh96 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ argument
98 { _code; }
99 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code) argument
100 # define DEFINE_COMPILES_ASSERTION(_code) _DEFINE_COMPILES_ASSERTION0 (__LINE__, _code) argument
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-machinery.hh107 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ argument
109 { _code; }
110 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code) argument
111 # define DEFINE_COMPILES_ASSERTION(_code) _DEFINE_COMPILES_ASSERTION0 (__LINE__, _code) argument
/third_party/grpc/src/python/grpcio_tests/tests/unit/
D_metadata_code_details_test.py66 self._code = None
78 context.abort(self._code, self._details)
80 if self._code is not None:
81 context.set_code(self._code)
95 context.abort(self._code, self._details)
97 if self._code is not None:
98 context.set_code(self._code)
115 context.abort(self._code, self._details)
117 if self._code is not None:
118 context.set_code(self._code)
[all …]
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/
Drpc_status.pyx.pxi26 self._code = code
32 return self._code
44 return <grpc_status_code>self._code
Drpc_status.pxd.pxi19 grpc_status_code _code
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Doperation.pyx.pxi95 self._code = code
112 self.c_op.data.send_status_from_server.status = self._code
211 self._code = self._c_code
224 return self._code
Doperation.pxd.pxi57 cdef readonly object _code
96 cdef object _code
/third_party/grpc/src/python/grpcio/grpc/aio/
D_call.py62 _code: grpc.StatusCode
85 self._code = code
97 return self._code
134 self._code, self._details,
161 _code: grpc.StatusCode
/third_party/grpc/src/python/grpcio/grpc/experimental/aio/
D_call.py62 _code: grpc.StatusCode
85 self._code = code
97 return self._code
134 self._code, self._details,
161 _code: grpc.StatusCode
/third_party/libwebsockets/lib/roles/http/
Dheader.c305 lws_add_http_header_status(struct lws *wsi, unsigned int _code, in lws_add_http_header_status() argument
312 unsigned int code = _code & LWSAHH_CODE_MASK; in lws_add_http_header_status()
385 !(_code & LWSAHH_FLAG_NO_SERVER_NAME)) { in lws_add_http_header_status()
/third_party/python/Include/
Dgenobject.h21 PyObject *prefix##_code; \
/third_party/openssl/crypto/rand/
Drand_unix.c163 extern void s$sleep(long *_duration, short int *_code); in rand_pool_acquire_entropy()
166 extern void s$sleep2(long long *_duration, short int *_code); in rand_pool_acquire_entropy()
/third_party/flutter/engine/flutter/shell/platform/darwin/common/framework/Source/
DFlutterChannels.mm86 _code = [code retain];
93 [_code release];
/third_party/grpc/doc/
Dc-style-guide.md14 [tools/distrib/clang\_format\_code.sh](../tools/distrib/clang_format_code.sh).
/third_party/python/Objects/
Dexceptions.c2678 PyObject *_code = PyLong_FromLong(CODE); \ in _PyExc_Init()
2680 if (!_code || PyDict_SetItem(state->errnomap, _code, PyExc_ ## TYPE)) { \ in _PyExc_Init()
2681 Py_XDECREF(_code); \ in _PyExc_Init()
2684 Py_DECREF(_code); \ in _PyExc_Init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMips16InstrFormats.td191 bits<6> _code; // code is a keyword in tablegen
197 let Inst{10-5} = _code;
/third_party/python/Lib/
Dsre_compile.py598 def _code(p, flags): function
768 code = _code(p, flags)
/third_party/mesa3d/src/asahi/lib/
Ddecode.c42 agx_disassemble(void *_code, size_t maxlen, FILE *fp) in agx_disassemble() argument
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
Des31cDrawIndirectTests.cpp108 DILogger sub_result(long _code) in sub_result() argument
110 if (_code == NO_ERROR) in sub_result()
112 return sub_result_inner(_code).nullify(); in sub_result()
116 return sub_result_inner(_code); in sub_result()
121 DILogger sub_result_inner(long _code) in sub_result_inner() argument
123 status_ |= _code; in sub_result_inner()

12