grpc
src
core
lib
surface
call_details.cc
Go to the documentation of this file.
1
/*
2
*
3
* Copyright 2015 gRPC authors.
4
*
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
* you may not use this file except in compliance with the License.
7
* You may obtain a copy of the License at
8
*
9
* http://www.apache.org/licenses/LICENSE-2.0
10
*
11
* Unless required by applicable law or agreed to in writing, software
12
* distributed under the License is distributed on an "AS IS" BASIS,
13
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
* See the License for the specific language governing permissions and
15
* limitations under the License.
16
*
17
*/
18
19
#include <
grpc/support/port_platform.h
>
20
21
#include <
grpc/grpc.h
>
22
#include <
grpc/impl/codegen/grpc_types.h
>
23
#include <
grpc/slice.h
>
24
25
#include "
src/core/lib/debug/trace.h
"
26
#include "
src/core/lib/iomgr/exec_ctx.h
"
27
#include "
src/core/lib/slice/slice_refcount.h
"
28
#include "
src/core/lib/surface/api_trace.h
"
29
30
void
grpc_call_details_init
(
grpc_call_details
*
details
) {
31
GRPC_API_TRACE
(
"grpc_call_details_init(details=%p)"
, 1, (
details
));
32
details
->method =
grpc_empty_slice
();
33
details
->host =
grpc_empty_slice
();
34
}
35
36
void
grpc_call_details_destroy
(
grpc_call_details
*
details
) {
37
GRPC_API_TRACE
(
"grpc_call_details_destroy(details=%p)"
, 1, (
details
));
38
grpc_core::ExecCtx
exec_ctx
;
39
grpc_slice_unref_internal
(
details
->method);
40
grpc_slice_unref_internal
(
details
->host);
41
}
trace.h
slice.h
grpc_call_details
Definition:
grpc_types.h:585
grpc_call_details_destroy
void grpc_call_details_destroy(grpc_call_details *details)
Definition:
call_details.cc:36
grpc_types.h
grpc.h
grpc_empty_slice
GPRAPI grpc_slice grpc_empty_slice(void)
Definition:
slice/slice.cc:42
grpc_call_details_init
void grpc_call_details_init(grpc_call_details *details)
Definition:
call_details.cc:30
grpc_core::ExecCtx
Definition:
exec_ctx.h:97
details
static grpc_slice details
Definition:
test/core/fling/client.cc:46
exec_ctx
grpc_core::ExecCtx exec_ctx
Definition:
end2end_binder_transport_test.cc:75
exec_ctx.h
slice_refcount.h
api_trace.h
GRPC_API_TRACE
#define GRPC_API_TRACE(fmt, nargs, args)
Definition:
api_trace.h:48
grpc_slice_unref_internal
void grpc_slice_unref_internal(const grpc_slice &slice)
Definition:
slice_refcount.h:39
port_platform.h
grpc
Author(s):
autogenerated on Fri May 16 2025 02:57:51