#include <grpc/support/port_platform.h>#include "src/core/ext/transport/inproc/inproc_transport.h"#include <stdint.h>#include <algorithm>#include <memory>#include <new>#include <string>#include <utility>#include "absl/status/status.h"#include "absl/status/statusor.h"#include "absl/strings/str_cat.h"#include "absl/strings/string_view.h"#include "absl/types/optional.h"#include "absl/utility/utility.h"#include <grpc/grpc.h>#include <grpc/impl/codegen/connectivity_state.h>#include <grpc/status.h>#include <grpc/support/alloc.h>#include <grpc/support/log.h>#include <grpc/support/sync.h>#include "src/core/lib/channel/channel_args.h"#include "src/core/lib/channel/channel_args_preconditioning.h"#include "src/core/lib/channel/channelz.h"#include "src/core/lib/config/core_configuration.h"#include "src/core/lib/gpr/useful.h"#include "src/core/lib/gprpp/debug_location.h"#include "src/core/lib/gprpp/ref_counted_ptr.h"#include "src/core/lib/gprpp/time.h"#include "src/core/lib/iomgr/closure.h"#include "src/core/lib/iomgr/endpoint.h"#include "src/core/lib/iomgr/error.h"#include "src/core/lib/iomgr/exec_ctx.h"#include "src/core/lib/iomgr/iomgr_fwd.h"#include "src/core/lib/iomgr/pollset.h"#include "src/core/lib/resource_quota/arena.h"#include "src/core/lib/slice/slice.h"#include "src/core/lib/slice/slice_buffer.h"#include "src/core/lib/surface/api_trace.h"#include "src/core/lib/surface/channel.h"#include "src/core/lib/surface/channel_stack_type.h"#include "src/core/lib/surface/server.h"#include "src/core/lib/transport/connectivity_state.h"#include "src/core/lib/transport/metadata_batch.h"#include "src/core/lib/transport/transport.h"#include "src/core/lib/transport/transport_fwd.h"#include "src/core/lib/transport/transport_impl.h"
Go to the source code of this file.
Macros | |
| #define | INPROC_LOG(...) |
| #define | STREAM_REF(refs, reason) grpc_stream_ref(refs, reason) |
| #define | STREAM_UNREF(refs, reason) grpc_stream_unref(refs, reason) |
Functions | |
| grpc_channel * | grpc_inproc_channel_create (grpc_server *server, const grpc_channel_args *args, void *) |
| #define INPROC_LOG | ( | ... | ) |
Definition at line 72 of file inproc_transport.cc.
| #define STREAM_REF | ( | refs, | |
| reason | |||
| ) | grpc_stream_ref(refs, reason) |
Definition at line 232 of file inproc_transport.cc.
| #define STREAM_UNREF | ( | refs, | |
| reason | |||
| ) | grpc_stream_unref(refs, reason) |
Definition at line 233 of file inproc_transport.cc.
| grpc_channel* grpc_inproc_channel_create | ( | grpc_server * | server, |
| const grpc_channel_args * | args, | ||
| void * | |||
| ) |
Definition at line 1247 of file inproc_transport.cc.