/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/ |
D | call.pyx.pxi | 23 self.c_call = NULL 36 self.c_call, batch_operation_tag.c_ops, batch_operation_tag.c_nops, 64 self.c_call, error_code, c_details, NULL) 68 result = grpc_call_cancel(self.c_call, NULL) 74 self.c_call, c_call_credentials) 81 peer = grpc_call_get_peer(self.c_call) 88 if self.c_call != NULL: 89 grpc_call_unref(self.c_call) 95 return self.c_call != NULL 98 return _custom_op_on_c_call(op, self.c_call)
|
D | channel.pyx.pxi | 90 cdef tuple _operate(grpc_call *c_call, object operations, object user_tag): argument 97 c_call, tag.c_ops, tag.c_nops, <cpython.PyObject *>tag, NULL) 108 c_call_error, tag = _operate(call_state.c_call, operations, user_tag) 126 c_call_error, tag = _operate(call_state.c_call, operations, user_tag) 143 call_state.c_call, code, _encode(details), NULL) 169 c_call and having its due set populated) if the RPC invocation is 204 call_state.c_call = grpc_channel_create_call( 214 call_state.c_call, c_call_credentials) 217 grpc_call_unref(call_state.c_call) 218 call_state.c_call = NULL [all …]
|
D | security.pyx.pxi | 39 auth_context = grpc_call_auth_context(call.c_call) 56 auth_context = grpc_call_auth_context(call.c_call) 72 auth_context = grpc_call_auth_context(call.c_call)
|
D | call.pxd.pxi | 18 cdef grpc_call *c_call
|
D | channel.pxd.pxi | 27 cdef grpc_call *c_call
|
D | server.pyx.pxi | 54 self.c_server, &request_call_tag.call.c_call,
|
/external/grpc-grpc/src/cpp/client/ |
D | channel_cc.cc | 106 grpc_call* c_call = nullptr; in CreateCall() local 108 c_call = grpc_channel_create_registered_call( in CreateCall() 124 c_call = grpc_channel_create_call( in CreateCall() 134 grpc_census_call_set_context(c_call, context->census_context()); in CreateCall() 135 context->set_call(c_call, shared_from_this()); in CreateCall() 136 return internal::Call(c_call, this, cq); in CreateCall()
|
/external/libxml2/python/ |
D | generator.py | 367 c_call = "" 398 if c_call != "": 399 c_call = c_call + ", " 400 c_call = c_call + "%s" % (arg[0]) 419 c_call = "\n if (%s->%s != NULL) xmlFree(%s->%s);\n" % ( 421 … c_call = c_call + " %s->%s = (%s)xmlStrdup((const xmlChar *)%s);\n" % (args[0][0], 424 c_call = "\n %s->%s = %s;\n" % (args[0][0], args[1][0], 427 c_call = "\n %s(%s);\n" % (name, c_call) 433 c_call = "\n c_retval = %s->%s;\n" % (args[0][0], ret[2]) 435 c_call = "\n c_retval = %s(%s);\n" % (name, c_call) [all …]
|
/external/grpc-grpc/include/grpcpp/impl/codegen/ |
D | server_context.h | 239 grpc_call* c_call() { return call_; } in c_call() function
|
D | client_context.h | 360 grpc_call* c_call() { return call_; } in c_call() function
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | buffer_assignment_test.cc | 1438 auto c_call = c_builder.AddInstruction( in TEST_F() local 1471 GetAllocation(*assignment, c_call, /*index=*/{})); in TEST_F() 1472 EXPECT_EQ(GetAllocation(*assignment, c_call, /*index=*/{}), in TEST_F() 1477 GetAllocation(*assignment, c_call, /*index=*/{0})); in TEST_F() 1478 EXPECT_EQ(GetAllocation(*assignment, c_call, /*index=*/{0}), in TEST_F()
|
/external/python/cpython2/Doc/library/ |
D | bdb.rst | 113 * ``"c_call"``: A C function is about to be called.
|
D | sys.rst | 869 ``'return'``, ``'c_call'``, ``'c_return'``, or ``'c_exception'``. *arg* depends 883 ``'c_call'``
|
/external/python/cpython3/Doc/library/ |
D | bdb.rst | 121 * ``"c_call"``: A C function is about to be called.
|
D | sys.rst | 1104 ``'return'``, ``'c_call'``, ``'c_return'``, or ``'c_exception'``. *arg* depends 1118 ``'c_call'``
|