Lines Matching refs:nops
532 size_t nops,
539 size_t nops, void* tag, in grpcsharp_call_start_batch_nop() argument
546 size_t nops, in grpcsharp_call_start_batch_default() argument
549 return grpc_call_start_batch(call, ops, nops, tag, reserved); in grpcsharp_call_start_batch_default()
557 size_t nops, void* tag, in grpcsharp_call_start_batch() argument
559 return g_call_start_batch_func(call, ops, nops, tag, reserved); in grpcsharp_call_start_batch()
743 size_t nops = send_empty_initial_metadata ? 2 : 1; in grpcsharp_call_send_message() local
753 return grpcsharp_call_start_batch(call, ops, nops, ctx, NULL); in grpcsharp_call_send_message()
777 size_t nops = 1; in grpcsharp_call_send_status_from_server() local
792 ops[nops].op = GRPC_OP_SEND_MESSAGE; in grpcsharp_call_send_status_from_server()
795 ops[nops].data.send_message.send_message = ctx->send_message; in grpcsharp_call_send_status_from_server()
796 ops[nops].flags = write_flags; in grpcsharp_call_send_status_from_server()
797 ops[nops].reserved = NULL; in grpcsharp_call_send_status_from_server()
798 nops++; in grpcsharp_call_send_status_from_server()
801 ops[nops].op = GRPC_OP_SEND_INITIAL_METADATA; in grpcsharp_call_send_status_from_server()
802 ops[nops].flags = 0; in grpcsharp_call_send_status_from_server()
803 ops[nops].reserved = NULL; in grpcsharp_call_send_status_from_server()
804 nops++; in grpcsharp_call_send_status_from_server()
806 grpc_call_error ret = grpcsharp_call_start_batch(call, ops, nops, ctx, NULL); in grpcsharp_call_send_status_from_server()