diff --git a/BUILD b/BUILD
index 32114d5c1b4..9e0e36e27ad 100644
--- a/BUILD
+++ b/BUILD
@@ -735,17 +735,18 @@ grpc_cc_library(
grpc_cc_library(
name = "gpr",
srcs = [
- "//src/core:lib/gprpp/crash.cc",
- "//src/core:lib/gprpp/fork.cc",
- "//src/core:lib/gprpp/host_port.cc",
- "//src/core:lib/gprpp/mpscq.cc",
- "//src/core:lib/gprpp/posix/stat.cc",
- "//src/core:lib/gprpp/posix/thd.cc",
- "//src/core:lib/gprpp/time_util.cc",
- "//src/core:lib/gprpp/windows/stat.cc",
- "//src/core:lib/gprpp/windows/thd.cc",
+ "//src/core:util/crash.cc",
+ "//src/core:util/fork.cc",
+ "//src/core:util/host_port.cc",
+ "//src/core:util/mpscq.cc",
+ "//src/core:util/posix/stat.cc",
+ "//src/core:util/posix/thd.cc",
+ "//src/core:util/time_util.cc",
+ "//src/core:util/windows/stat.cc",
+ "//src/core:util/windows/thd.cc",
"//src/core:util/alloc.cc",
"//src/core:util/android/log.cc",
+ "//src/core:util/gpr_time.cc",
"//src/core:util/iphone/cpu.cc",
"//src/core:util/linux/cpu.cc",
"//src/core:util/linux/log.cc",
@@ -760,7 +761,6 @@ grpc_cc_library(
"//src/core:util/string.cc",
"//src/core:util/sync.cc",
"//src/core:util/sync_abseil.cc",
- "//src/core:util/time.cc",
"//src/core:util/time_precise.cc",
"//src/core:util/windows/cpu.cc",
"//src/core:util/windows/log.cc",
@@ -771,15 +771,15 @@ grpc_cc_library(
"//src/core:util/windows/tmpfile.cc",
],
hdrs = [
- "//src/core:lib/gprpp/crash.h",
- "//src/core:lib/gprpp/fork.h",
- "//src/core:lib/gprpp/host_port.h",
- "//src/core:lib/gprpp/memory.h",
- "//src/core:lib/gprpp/mpscq.h",
- "//src/core:lib/gprpp/stat.h",
- "//src/core:lib/gprpp/sync.h",
- "//src/core:lib/gprpp/thd.h",
- "//src/core:lib/gprpp/time_util.h",
+ "//src/core:util/crash.h",
+ "//src/core:util/fork.h",
+ "//src/core:util/host_port.h",
+ "//src/core:util/memory.h",
+ "//src/core:util/mpscq.h",
+ "//src/core:util/stat.h",
+ "//src/core:util/sync.h",
+ "//src/core:util/thd.h",
+ "//src/core:util/time_util.h",
"//src/core:util/alloc.h",
"//src/core:util/string.h",
"//src/core:util/time_precise.h",
@@ -840,7 +840,7 @@ grpc_cc_library(
grpc_cc_library(
name = "cpp_impl_of",
- hdrs = ["//src/core:lib/gprpp/cpp_impl_of.h"],
+ hdrs = ["//src/core:util/cpp_impl_of.h"],
language = "c++",
)
@@ -2998,10 +2998,10 @@ grpc_cc_library(
grpc_cc_library(
name = "work_serializer",
srcs = [
- "//src/core:lib/gprpp/work_serializer.cc",
+ "//src/core:util/work_serializer.cc",
],
hdrs = [
- "//src/core:lib/gprpp/work_serializer.h",
+ "//src/core:util/work_serializer.h",
],
external_deps = [
"absl/base:core_headers",
@@ -3118,7 +3118,7 @@ grpc_cc_library(
grpc_cc_library(
name = "debug_location",
language = "c++",
- public_hdrs = ["//src/core:lib/gprpp/debug_location.h"],
+ public_hdrs = ["//src/core:util/debug_location.h"],
visibility = ["@grpc:debug_location"],
deps = ["gpr_platform"],
)
@@ -3126,7 +3126,7 @@ grpc_cc_library(
grpc_cc_library(
name = "orphanable",
language = "c++",
- public_hdrs = ["//src/core:lib/gprpp/orphanable.h"],
+ public_hdrs = ["//src/core:util/orphanable.h"],
visibility = [
"@grpc:client_channel",
"@grpc:xds_client_core",
@@ -3163,7 +3163,7 @@ grpc_cc_library(
name = "ref_counted_ptr",
external_deps = ["absl/hash"],
language = "c++",
- public_hdrs = ["//src/core:lib/gprpp/ref_counted_ptr.h"],
+ public_hdrs = ["//src/core:util/ref_counted_ptr.h"],
visibility = ["@grpc:ref_counted_ptr"],
deps = [
"debug_location",
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d975a4b03b1..79cc39e4173 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1670,21 +1670,21 @@ add_library(gpr
src/core/lib/config/config_vars_non_generated.cc
src/core/lib/config/load_config.cc
src/core/lib/event_engine/thread_local.cc
- src/core/lib/gprpp/crash.cc
- src/core/lib/gprpp/examine_stack.cc
- src/core/lib/gprpp/fork.cc
- src/core/lib/gprpp/host_port.cc
- src/core/lib/gprpp/linux/env.cc
- src/core/lib/gprpp/mpscq.cc
- src/core/lib/gprpp/posix/env.cc
- src/core/lib/gprpp/posix/stat.cc
- src/core/lib/gprpp/posix/thd.cc
- src/core/lib/gprpp/strerror.cc
- src/core/lib/gprpp/tchar.cc
- src/core/lib/gprpp/time_util.cc
- src/core/lib/gprpp/windows/env.cc
- src/core/lib/gprpp/windows/stat.cc
- src/core/lib/gprpp/windows/thd.cc
+ src/core/util/crash.cc
+ src/core/util/examine_stack.cc
+ src/core/util/fork.cc
+ src/core/util/host_port.cc
+ src/core/util/linux/env.cc
+ src/core/util/mpscq.cc
+ src/core/util/posix/env.cc
+ src/core/util/posix/stat.cc
+ src/core/util/posix/thd.cc
+ src/core/util/strerror.cc
+ src/core/util/tchar.cc
+ src/core/util/time_util.cc
+ src/core/util/windows/env.cc
+ src/core/util/windows/stat.cc
+ src/core/util/windows/thd.cc
src/core/util/alloc.cc
src/core/util/android/log.cc
src/core/util/atm.cc
@@ -2303,18 +2303,18 @@ add_library(grpc
src/core/lib/event_engine/work_queue/basic_work_queue.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/dump_args.cc
- src/core/lib/gprpp/load_file.cc
- src/core/lib/gprpp/per_cpu.cc
- src/core/lib/gprpp/posix/directory_reader.cc
- src/core/lib/gprpp/ref_counted_string.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
- src/core/lib/gprpp/time_averaged_stats.cc
- src/core/lib/gprpp/uuid_v4.cc
- src/core/lib/gprpp/validation_errors.cc
- src/core/lib/gprpp/windows/directory_reader.cc
- src/core/lib/gprpp/work_serializer.cc
+ src/core/util/dump_args.cc
+ src/core/util/load_file.cc
+ src/core/util/per_cpu.cc
+ src/core/util/posix/directory_reader.cc
+ src/core/util/ref_counted_string.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
+ src/core/util/time_averaged_stats.cc
+ src/core/util/uuid_v4.cc
+ src/core/util/validation_errors.cc
+ src/core/util/windows/directory_reader.cc
+ src/core/util/work_serializer.cc
src/core/lib/iomgr/buffer_list.cc
src/core/lib/iomgr/call_combiner.cc
src/core/lib/iomgr/cfstream_handle.cc
@@ -3099,16 +3099,16 @@ add_library(grpc_unsecure
src/core/lib/event_engine/work_queue/basic_work_queue.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/dump_args.cc
- src/core/lib/gprpp/load_file.cc
- src/core/lib/gprpp/per_cpu.cc
- src/core/lib/gprpp/ref_counted_string.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
- src/core/lib/gprpp/time_averaged_stats.cc
- src/core/lib/gprpp/uuid_v4.cc
- src/core/lib/gprpp/validation_errors.cc
- src/core/lib/gprpp/work_serializer.cc
+ src/core/util/dump_args.cc
+ src/core/util/load_file.cc
+ src/core/util/per_cpu.cc
+ src/core/util/ref_counted_string.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
+ src/core/util/time_averaged_stats.cc
+ src/core/util/uuid_v4.cc
+ src/core/util/validation_errors.cc
+ src/core/util/work_serializer.cc
src/core/lib/iomgr/buffer_list.cc
src/core/lib/iomgr/call_combiner.cc
src/core/lib/iomgr/cfstream_handle.cc
@@ -5218,15 +5218,15 @@ add_library(grpc_authorization_provider
src/core/lib/event_engine/work_queue/basic_work_queue.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/dump_args.cc
- src/core/lib/gprpp/load_file.cc
- src/core/lib/gprpp/per_cpu.cc
- src/core/lib/gprpp/ref_counted_string.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
- src/core/lib/gprpp/time_averaged_stats.cc
- src/core/lib/gprpp/validation_errors.cc
- src/core/lib/gprpp/work_serializer.cc
+ src/core/util/dump_args.cc
+ src/core/util/load_file.cc
+ src/core/util/per_cpu.cc
+ src/core/util/ref_counted_string.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
+ src/core/util/time_averaged_stats.cc
+ src/core/util/validation_errors.cc
+ src/core/util/work_serializer.cc
src/core/lib/iomgr/buffer_list.cc
src/core/lib/iomgr/call_combiner.cc
src/core/lib/iomgr/cfstream_handle.cc
@@ -8522,10 +8522,10 @@ add_executable(call_filters_test
src/core/lib/debug/trace.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/dump_args.cc
- src/core/lib/gprpp/ref_counted_string.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/dump_args.cc
+ src/core/util/ref_counted_string.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
src/core/lib/iomgr/closure.cc
src/core/lib/iomgr/combiner.cc
src/core/lib/iomgr/error.cc
@@ -10198,8 +10198,8 @@ add_executable(chunked_vector_test
src/core/lib/debug/trace.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
src/core/lib/iomgr/closure.cc
src/core/lib/iomgr/combiner.cc
src/core/lib/iomgr/error.cc
@@ -12477,7 +12477,7 @@ endif()
if(gRPC_BUILD_TESTS)
add_executable(dump_args_test
- src/core/lib/gprpp/dump_args.cc
+ src/core/util/dump_args.cc
test/core/gprpp/dump_args_test.cc
)
target_compile_features(dump_args_test PUBLIC cxx_std_14)
@@ -12900,8 +12900,8 @@ if(gRPC_BUILD_TESTS)
add_executable(endpoint_config_test
src/core/lib/channel/channel_args.cc
src/core/lib/event_engine/channel_args_endpoint_config.cc
- src/core/lib/gprpp/ref_counted_string.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/ref_counted_string.cc
+ src/core/util/time.cc
src/core/lib/surface/channel_stack_type.cc
test/core/event_engine/endpoint_config_test.cc
)
@@ -13447,8 +13447,8 @@ add_executable(exec_ctx_wakeup_scheduler_test
src/core/lib/debug/trace.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
src/core/lib/iomgr/closure.cc
src/core/lib/iomgr/combiner.cc
src/core/lib/iomgr/error.cc
@@ -14306,8 +14306,8 @@ add_executable(flow_control_test
src/core/lib/debug/trace.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
src/core/lib/iomgr/closure.cc
src/core/lib/iomgr/combiner.cc
src/core/lib/iomgr/error.cc
@@ -14392,8 +14392,8 @@ add_executable(for_each_test
src/core/lib/debug/trace.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
src/core/lib/iomgr/closure.cc
src/core/lib/iomgr/combiner.cc
src/core/lib/iomgr/error.cc
@@ -17914,15 +17914,15 @@ add_executable(interception_chain_test
src/core/lib/event_engine/work_queue/basic_work_queue.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/dump_args.cc
- src/core/lib/gprpp/load_file.cc
- src/core/lib/gprpp/per_cpu.cc
- src/core/lib/gprpp/ref_counted_string.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
- src/core/lib/gprpp/time_averaged_stats.cc
- src/core/lib/gprpp/validation_errors.cc
- src/core/lib/gprpp/work_serializer.cc
+ src/core/util/dump_args.cc
+ src/core/util/load_file.cc
+ src/core/util/per_cpu.cc
+ src/core/util/ref_counted_string.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
+ src/core/util/time_averaged_stats.cc
+ src/core/util/validation_errors.cc
+ src/core/util/work_serializer.cc
src/core/lib/iomgr/buffer_list.cc
src/core/lib/iomgr/call_combiner.cc
src/core/lib/iomgr/cfstream_handle.cc
@@ -18144,8 +18144,8 @@ add_executable(interceptor_list_test
src/core/lib/debug/trace.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
src/core/lib/iomgr/closure.cc
src/core/lib/iomgr/combiner.cc
src/core/lib/iomgr/error.cc
@@ -19389,8 +19389,8 @@ add_executable(map_pipe_test
src/core/lib/debug/trace.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
src/core/lib/iomgr/closure.cc
src/core/lib/iomgr/combiner.cc
src/core/lib/iomgr/error.cc
@@ -21661,8 +21661,8 @@ add_executable(periodic_update_test
src/core/lib/debug/trace.cc
src/core/lib/experiments/config.cc
src/core/lib/experiments/experiments.cc
- src/core/lib/gprpp/status_helper.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/status_helper.cc
+ src/core/util/time.cc
src/core/lib/iomgr/closure.cc
src/core/lib/iomgr/combiner.cc
src/core/lib/iomgr/error.cc
@@ -30036,8 +30036,8 @@ if(gRPC_BUILD_TESTS)
add_executable(test_core_event_engine_posix_timer_heap_test
src/core/lib/event_engine/posix_engine/timer.cc
src/core/lib/event_engine/posix_engine/timer_heap.cc
- src/core/lib/gprpp/time.cc
- src/core/lib/gprpp/time_averaged_stats.cc
+ src/core/util/time.cc
+ src/core/util/time_averaged_stats.cc
test/core/event_engine/posix/timer_heap_test.cc
)
if(WIN32 AND MSVC)
@@ -30082,8 +30082,8 @@ if(gRPC_BUILD_TESTS)
add_executable(test_core_event_engine_posix_timer_list_test
src/core/lib/event_engine/posix_engine/timer.cc
src/core/lib/event_engine/posix_engine/timer_heap.cc
- src/core/lib/gprpp/time.cc
- src/core/lib/gprpp/time_averaged_stats.cc
+ src/core/util/time.cc
+ src/core/util/time_averaged_stats.cc
test/core/event_engine/posix/timer_list_test.cc
)
if(WIN32 AND MSVC)
@@ -30179,7 +30179,7 @@ endif()
if(gRPC_BUILD_TESTS)
add_executable(test_core_gprpp_time_test
- src/core/lib/gprpp/time.cc
+ src/core/util/time.cc
test/core/gprpp/time_test.cc
)
if(WIN32 AND MSVC)
@@ -33104,7 +33104,7 @@ if(gRPC_BUILD_TESTS)
add_executable(write_size_policy_test
src/core/ext/transport/chttp2/transport/write_size_policy.cc
- src/core/lib/gprpp/time.cc
+ src/core/util/time.cc
test/core/transport/chttp2/write_size_policy_test.cc
)
if(WIN32 AND MSVC)
diff --git a/Makefile b/Makefile
index 1b5a8db3203..f8a3ad87215 100644
--- a/Makefile
+++ b/Makefile
@@ -1138,33 +1138,33 @@ LIBGRPC_SRC = \
src/core/lib/event_engine/work_queue/basic_work_queue.cc \
src/core/lib/experiments/config.cc \
src/core/lib/experiments/experiments.cc \
- src/core/lib/gprpp/crash.cc \
- src/core/lib/gprpp/dump_args.cc \
- src/core/lib/gprpp/examine_stack.cc \
- src/core/lib/gprpp/fork.cc \
- src/core/lib/gprpp/host_port.cc \
- src/core/lib/gprpp/linux/env.cc \
- src/core/lib/gprpp/load_file.cc \
- src/core/lib/gprpp/mpscq.cc \
- src/core/lib/gprpp/per_cpu.cc \
- src/core/lib/gprpp/posix/directory_reader.cc \
- src/core/lib/gprpp/posix/env.cc \
- src/core/lib/gprpp/posix/stat.cc \
- src/core/lib/gprpp/posix/thd.cc \
- src/core/lib/gprpp/ref_counted_string.cc \
- src/core/lib/gprpp/status_helper.cc \
- src/core/lib/gprpp/strerror.cc \
- src/core/lib/gprpp/tchar.cc \
- src/core/lib/gprpp/time.cc \
- src/core/lib/gprpp/time_averaged_stats.cc \
- src/core/lib/gprpp/time_util.cc \
- src/core/lib/gprpp/uuid_v4.cc \
- src/core/lib/gprpp/validation_errors.cc \
- src/core/lib/gprpp/windows/directory_reader.cc \
- src/core/lib/gprpp/windows/env.cc \
- src/core/lib/gprpp/windows/stat.cc \
- src/core/lib/gprpp/windows/thd.cc \
- src/core/lib/gprpp/work_serializer.cc \
+ src/core/util/crash.cc \
+ src/core/util/dump_args.cc \
+ src/core/util/examine_stack.cc \
+ src/core/util/fork.cc \
+ src/core/util/host_port.cc \
+ src/core/util/linux/env.cc \
+ src/core/util/load_file.cc \
+ src/core/util/mpscq.cc \
+ src/core/util/per_cpu.cc \
+ src/core/util/posix/directory_reader.cc \
+ src/core/util/posix/env.cc \
+ src/core/util/posix/stat.cc \
+ src/core/util/posix/thd.cc \
+ src/core/util/ref_counted_string.cc \
+ src/core/util/status_helper.cc \
+ src/core/util/strerror.cc \
+ src/core/util/tchar.cc \
+ src/core/util/time.cc \
+ src/core/util/time_averaged_stats.cc \
+ src/core/util/time_util.cc \
+ src/core/util/uuid_v4.cc \
+ src/core/util/validation_errors.cc \
+ src/core/util/windows/directory_reader.cc \
+ src/core/util/windows/env.cc \
+ src/core/util/windows/stat.cc \
+ src/core/util/windows/thd.cc \
+ src/core/util/work_serializer.cc \
src/core/lib/iomgr/buffer_list.cc \
src/core/lib/iomgr/call_combiner.cc \
src/core/lib/iomgr/cfstream_handle.cc \
diff --git a/Package.swift b/Package.swift
index 099db505847..afee52fde3e 100644
--- a/Package.swift
+++ b/Package.swift
@@ -1247,81 +1247,81 @@ let package = Package(
"src/core/lib/experiments/config.h",
"src/core/lib/experiments/experiments.cc",
"src/core/lib/experiments/experiments.h",
- "src/core/lib/gprpp/atomic_utils.h",
- "src/core/lib/gprpp/bitset.h",
- "src/core/lib/gprpp/chunked_vector.h",
- "src/core/lib/gprpp/construct_destruct.h",
- "src/core/lib/gprpp/cpp_impl_of.h",
- "src/core/lib/gprpp/crash.cc",
- "src/core/lib/gprpp/crash.h",
- "src/core/lib/gprpp/debug_location.h",
- "src/core/lib/gprpp/directory_reader.h",
- "src/core/lib/gprpp/down_cast.h",
- "src/core/lib/gprpp/dual_ref_counted.h",
- "src/core/lib/gprpp/dump_args.cc",
- "src/core/lib/gprpp/dump_args.h",
- "src/core/lib/gprpp/env.h",
- "src/core/lib/gprpp/examine_stack.cc",
- "src/core/lib/gprpp/examine_stack.h",
- "src/core/lib/gprpp/fork.cc",
- "src/core/lib/gprpp/fork.h",
- "src/core/lib/gprpp/host_port.cc",
- "src/core/lib/gprpp/host_port.h",
- "src/core/lib/gprpp/if_list.h",
- "src/core/lib/gprpp/linux/env.cc",
- "src/core/lib/gprpp/load_file.cc",
- "src/core/lib/gprpp/load_file.h",
- "src/core/lib/gprpp/manual_constructor.h",
- "src/core/lib/gprpp/match.h",
- "src/core/lib/gprpp/memory.h",
- "src/core/lib/gprpp/mpscq.cc",
- "src/core/lib/gprpp/mpscq.h",
- "src/core/lib/gprpp/no_destruct.h",
- "src/core/lib/gprpp/notification.h",
- "src/core/lib/gprpp/orphanable.h",
- "src/core/lib/gprpp/overload.h",
- "src/core/lib/gprpp/packed_table.h",
- "src/core/lib/gprpp/per_cpu.cc",
- "src/core/lib/gprpp/per_cpu.h",
- "src/core/lib/gprpp/posix/directory_reader.cc",
- "src/core/lib/gprpp/posix/env.cc",
- "src/core/lib/gprpp/posix/stat.cc",
- "src/core/lib/gprpp/posix/thd.cc",
- "src/core/lib/gprpp/ref_counted.h",
- "src/core/lib/gprpp/ref_counted_ptr.h",
- "src/core/lib/gprpp/ref_counted_string.cc",
- "src/core/lib/gprpp/ref_counted_string.h",
- "src/core/lib/gprpp/single_set_ptr.h",
- "src/core/lib/gprpp/sorted_pack.h",
- "src/core/lib/gprpp/stat.h",
- "src/core/lib/gprpp/status_helper.cc",
- "src/core/lib/gprpp/status_helper.h",
- "src/core/lib/gprpp/strerror.cc",
- "src/core/lib/gprpp/strerror.h",
- "src/core/lib/gprpp/sync.h",
- "src/core/lib/gprpp/table.h",
- "src/core/lib/gprpp/tchar.cc",
- "src/core/lib/gprpp/tchar.h",
- "src/core/lib/gprpp/thd.h",
- "src/core/lib/gprpp/time.cc",
- "src/core/lib/gprpp/time.h",
- "src/core/lib/gprpp/time_averaged_stats.cc",
- "src/core/lib/gprpp/time_averaged_stats.h",
- "src/core/lib/gprpp/time_util.cc",
- "src/core/lib/gprpp/time_util.h",
- "src/core/lib/gprpp/type_list.h",
- "src/core/lib/gprpp/unique_type_name.h",
- "src/core/lib/gprpp/uuid_v4.cc",
- "src/core/lib/gprpp/uuid_v4.h",
- "src/core/lib/gprpp/validation_errors.cc",
- "src/core/lib/gprpp/validation_errors.h",
- "src/core/lib/gprpp/windows/directory_reader.cc",
- "src/core/lib/gprpp/windows/env.cc",
- "src/core/lib/gprpp/windows/stat.cc",
- "src/core/lib/gprpp/windows/thd.cc",
- "src/core/lib/gprpp/work_serializer.cc",
- "src/core/lib/gprpp/work_serializer.h",
- "src/core/lib/gprpp/xxhash_inline.h",
+ "src/core/util/atomic_utils.h",
+ "src/core/util/bitset.h",
+ "src/core/util/chunked_vector.h",
+ "src/core/util/construct_destruct.h",
+ "src/core/util/cpp_impl_of.h",
+ "src/core/util/crash.cc",
+ "src/core/util/crash.h",
+ "src/core/util/debug_location.h",
+ "src/core/util/directory_reader.h",
+ "src/core/util/down_cast.h",
+ "src/core/util/dual_ref_counted.h",
+ "src/core/util/dump_args.cc",
+ "src/core/util/dump_args.h",
+ "src/core/util/env.h",
+ "src/core/util/examine_stack.cc",
+ "src/core/util/examine_stack.h",
+ "src/core/util/fork.cc",
+ "src/core/util/fork.h",
+ "src/core/util/host_port.cc",
+ "src/core/util/host_port.h",
+ "src/core/util/if_list.h",
+ "src/core/util/linux/env.cc",
+ "src/core/util/load_file.cc",
+ "src/core/util/load_file.h",
+ "src/core/util/manual_constructor.h",
+ "src/core/util/match.h",
+ "src/core/util/memory.h",
+ "src/core/util/mpscq.cc",
+ "src/core/util/mpscq.h",
+ "src/core/util/no_destruct.h",
+ "src/core/util/notification.h",
+ "src/core/util/orphanable.h",
+ "src/core/util/overload.h",
+ "src/core/util/packed_table.h",
+ "src/core/util/per_cpu.cc",
+ "src/core/util/per_cpu.h",
+ "src/core/util/posix/directory_reader.cc",
+ "src/core/util/posix/env.cc",
+ "src/core/util/posix/stat.cc",
+ "src/core/util/posix/thd.cc",
+ "src/core/util/ref_counted.h",
+ "src/core/util/ref_counted_ptr.h",
+ "src/core/util/ref_counted_string.cc",
+ "src/core/util/ref_counted_string.h",
+ "src/core/util/single_set_ptr.h",
+ "src/core/util/sorted_pack.h",
+ "src/core/util/stat.h",
+ "src/core/util/status_helper.cc",
+ "src/core/util/status_helper.h",
+ "src/core/util/strerror.cc",
+ "src/core/util/strerror.h",
+ "src/core/util/sync.h",
+ "src/core/util/table.h",
+ "src/core/util/tchar.cc",
+ "src/core/util/tchar.h",
+ "src/core/util/thd.h",
+ "src/core/util/time.cc",
+ "src/core/util/time.h",
+ "src/core/util/time_averaged_stats.cc",
+ "src/core/util/time_averaged_stats.h",
+ "src/core/util/time_util.cc",
+ "src/core/util/time_util.h",
+ "src/core/util/type_list.h",
+ "src/core/util/unique_type_name.h",
+ "src/core/util/uuid_v4.cc",
+ "src/core/util/uuid_v4.h",
+ "src/core/util/validation_errors.cc",
+ "src/core/util/validation_errors.h",
+ "src/core/util/windows/directory_reader.cc",
+ "src/core/util/windows/env.cc",
+ "src/core/util/windows/stat.cc",
+ "src/core/util/windows/thd.cc",
+ "src/core/util/work_serializer.cc",
+ "src/core/util/work_serializer.h",
+ "src/core/util/xxhash_inline.h",
"src/core/lib/iomgr/block_annotate.h",
"src/core/lib/iomgr/buffer_list.cc",
"src/core/lib/iomgr/buffer_list.h",
diff --git a/build_autogenerated.yaml b/build_autogenerated.yaml
index fa913f66639..902f09a06f1 100644
--- a/build_autogenerated.yaml
+++ b/build_autogenerated.yaml
@@ -55,22 +55,22 @@ libs:
- src/core/lib/config/config_vars.h
- src/core/lib/config/load_config.h
- src/core/lib/event_engine/thread_local.h
- - src/core/lib/gprpp/construct_destruct.h
- - src/core/lib/gprpp/crash.h
- - src/core/lib/gprpp/debug_location.h
- - src/core/lib/gprpp/env.h
- - src/core/lib/gprpp/examine_stack.h
- - src/core/lib/gprpp/fork.h
- - src/core/lib/gprpp/host_port.h
- - src/core/lib/gprpp/memory.h
- - src/core/lib/gprpp/mpscq.h
- - src/core/lib/gprpp/no_destruct.h
- - src/core/lib/gprpp/stat.h
- - src/core/lib/gprpp/strerror.h
- - src/core/lib/gprpp/sync.h
- - src/core/lib/gprpp/tchar.h
- - src/core/lib/gprpp/thd.h
- - src/core/lib/gprpp/time_util.h
+ - src/core/util/construct_destruct.h
+ - src/core/util/crash.h
+ - src/core/util/debug_location.h
+ - src/core/util/env.h
+ - src/core/util/examine_stack.h
+ - src/core/util/fork.h
+ - src/core/util/host_port.h
+ - src/core/util/memory.h
+ - src/core/util/mpscq.h
+ - src/core/util/no_destruct.h
+ - src/core/util/stat.h
+ - src/core/util/strerror.h
+ - src/core/util/sync.h
+ - src/core/util/tchar.h
+ - src/core/util/thd.h
+ - src/core/util/time_util.h
- src/core/util/alloc.h
- src/core/util/string.h
- src/core/util/time_precise.h
@@ -81,21 +81,21 @@ libs:
- src/core/lib/config/config_vars_non_generated.cc
- src/core/lib/config/load_config.cc
- src/core/lib/event_engine/thread_local.cc
- - src/core/lib/gprpp/crash.cc
- - src/core/lib/gprpp/examine_stack.cc
- - src/core/lib/gprpp/fork.cc
- - src/core/lib/gprpp/host_port.cc
- - src/core/lib/gprpp/linux/env.cc
- - src/core/lib/gprpp/mpscq.cc
- - src/core/lib/gprpp/posix/env.cc
- - src/core/lib/gprpp/posix/stat.cc
- - src/core/lib/gprpp/posix/thd.cc
- - src/core/lib/gprpp/strerror.cc
- - src/core/lib/gprpp/tchar.cc
- - src/core/lib/gprpp/time_util.cc
- - src/core/lib/gprpp/windows/env.cc
- - src/core/lib/gprpp/windows/stat.cc
- - src/core/lib/gprpp/windows/thd.cc
+ - src/core/util/crash.cc
+ - src/core/util/examine_stack.cc
+ - src/core/util/fork.cc
+ - src/core/util/host_port.cc
+ - src/core/util/linux/env.cc
+ - src/core/util/mpscq.cc
+ - src/core/util/posix/env.cc
+ - src/core/util/posix/stat.cc
+ - src/core/util/posix/thd.cc
+ - src/core/util/strerror.cc
+ - src/core/util/tchar.cc
+ - src/core/util/time_util.cc
+ - src/core/util/windows/env.cc
+ - src/core/util/windows/stat.cc
+ - src/core/util/windows/thd.cc
- src/core/util/alloc.cc
- src/core/util/android/log.cc
- src/core/util/atm.cc
@@ -877,38 +877,38 @@ libs:
- src/core/lib/event_engine/work_queue/work_queue.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/chunked_vector.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/directory_reader.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/dual_ref_counted.h
- - src/core/lib/gprpp/dump_args.h
- - src/core/lib/gprpp/if_list.h
- - src/core/lib/gprpp/load_file.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/match.h
- - src/core/lib/gprpp/notification.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/overload.h
- - src/core/lib/gprpp/packed_table.h
- - src/core/lib/gprpp/per_cpu.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/ref_counted_string.h
- - src/core/lib/gprpp/single_set_ptr.h
- - src/core/lib/gprpp/sorted_pack.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/table.h
- - src/core/lib/gprpp/time.h
- - src/core/lib/gprpp/time_averaged_stats.h
- - src/core/lib/gprpp/type_list.h
- - src/core/lib/gprpp/unique_type_name.h
- - src/core/lib/gprpp/uuid_v4.h
- - src/core/lib/gprpp/validation_errors.h
- - src/core/lib/gprpp/work_serializer.h
- - src/core/lib/gprpp/xxhash_inline.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/chunked_vector.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/directory_reader.h
+ - src/core/util/down_cast.h
+ - src/core/util/dual_ref_counted.h
+ - src/core/util/dump_args.h
+ - src/core/util/if_list.h
+ - src/core/util/load_file.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/match.h
+ - src/core/util/notification.h
+ - src/core/util/orphanable.h
+ - src/core/util/overload.h
+ - src/core/util/packed_table.h
+ - src/core/util/per_cpu.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/ref_counted_string.h
+ - src/core/util/single_set_ptr.h
+ - src/core/util/sorted_pack.h
+ - src/core/util/status_helper.h
+ - src/core/util/table.h
+ - src/core/util/time.h
+ - src/core/util/time_averaged_stats.h
+ - src/core/util/type_list.h
+ - src/core/util/unique_type_name.h
+ - src/core/util/uuid_v4.h
+ - src/core/util/validation_errors.h
+ - src/core/util/work_serializer.h
+ - src/core/util/xxhash_inline.h
- src/core/lib/iomgr/block_annotate.h
- src/core/lib/iomgr/buffer_list.h
- src/core/lib/iomgr/call_combiner.h
@@ -1719,18 +1719,18 @@ libs:
- src/core/lib/event_engine/work_queue/basic_work_queue.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/dump_args.cc
- - src/core/lib/gprpp/load_file.cc
- - src/core/lib/gprpp/per_cpu.cc
- - src/core/lib/gprpp/posix/directory_reader.cc
- - src/core/lib/gprpp/ref_counted_string.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
- - src/core/lib/gprpp/time_averaged_stats.cc
- - src/core/lib/gprpp/uuid_v4.cc
- - src/core/lib/gprpp/validation_errors.cc
- - src/core/lib/gprpp/windows/directory_reader.cc
- - src/core/lib/gprpp/work_serializer.cc
+ - src/core/util/dump_args.cc
+ - src/core/util/load_file.cc
+ - src/core/util/per_cpu.cc
+ - src/core/util/posix/directory_reader.cc
+ - src/core/util/ref_counted_string.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
+ - src/core/util/time_averaged_stats.cc
+ - src/core/util/uuid_v4.cc
+ - src/core/util/validation_errors.cc
+ - src/core/util/windows/directory_reader.cc
+ - src/core/util/work_serializer.cc
- src/core/lib/iomgr/buffer_list.cc
- src/core/lib/iomgr/call_combiner.cc
- src/core/lib/iomgr/cfstream_handle.cc
@@ -2422,36 +2422,36 @@ libs:
- src/core/lib/event_engine/work_queue/work_queue.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/chunked_vector.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/dual_ref_counted.h
- - src/core/lib/gprpp/dump_args.h
- - src/core/lib/gprpp/if_list.h
- - src/core/lib/gprpp/load_file.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/match.h
- - src/core/lib/gprpp/notification.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/overload.h
- - src/core/lib/gprpp/packed_table.h
- - src/core/lib/gprpp/per_cpu.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/ref_counted_string.h
- - src/core/lib/gprpp/single_set_ptr.h
- - src/core/lib/gprpp/sorted_pack.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/table.h
- - src/core/lib/gprpp/time.h
- - src/core/lib/gprpp/time_averaged_stats.h
- - src/core/lib/gprpp/type_list.h
- - src/core/lib/gprpp/unique_type_name.h
- - src/core/lib/gprpp/uuid_v4.h
- - src/core/lib/gprpp/validation_errors.h
- - src/core/lib/gprpp/work_serializer.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/chunked_vector.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/dual_ref_counted.h
+ - src/core/util/dump_args.h
+ - src/core/util/if_list.h
+ - src/core/util/load_file.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/match.h
+ - src/core/util/notification.h
+ - src/core/util/orphanable.h
+ - src/core/util/overload.h
+ - src/core/util/packed_table.h
+ - src/core/util/per_cpu.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/ref_counted_string.h
+ - src/core/util/single_set_ptr.h
+ - src/core/util/sorted_pack.h
+ - src/core/util/status_helper.h
+ - src/core/util/table.h
+ - src/core/util/time.h
+ - src/core/util/time_averaged_stats.h
+ - src/core/util/type_list.h
+ - src/core/util/unique_type_name.h
+ - src/core/util/uuid_v4.h
+ - src/core/util/validation_errors.h
+ - src/core/util/work_serializer.h
- src/core/lib/iomgr/block_annotate.h
- src/core/lib/iomgr/buffer_list.h
- src/core/lib/iomgr/call_combiner.h
@@ -2879,16 +2879,16 @@ libs:
- src/core/lib/event_engine/work_queue/basic_work_queue.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/dump_args.cc
- - src/core/lib/gprpp/load_file.cc
- - src/core/lib/gprpp/per_cpu.cc
- - src/core/lib/gprpp/ref_counted_string.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
- - src/core/lib/gprpp/time_averaged_stats.cc
- - src/core/lib/gprpp/uuid_v4.cc
- - src/core/lib/gprpp/validation_errors.cc
- - src/core/lib/gprpp/work_serializer.cc
+ - src/core/util/dump_args.cc
+ - src/core/util/load_file.cc
+ - src/core/util/per_cpu.cc
+ - src/core/util/ref_counted_string.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
+ - src/core/util/time_averaged_stats.cc
+ - src/core/util/uuid_v4.cc
+ - src/core/util/validation_errors.cc
+ - src/core/util/work_serializer.cc
- src/core/lib/iomgr/buffer_list.cc
- src/core/lib/iomgr/call_combiner.cc
- src/core/lib/iomgr/cfstream_handle.cc
@@ -4517,34 +4517,34 @@ libs:
- src/core/lib/event_engine/work_queue/work_queue.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/chunked_vector.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/dual_ref_counted.h
- - src/core/lib/gprpp/dump_args.h
- - src/core/lib/gprpp/if_list.h
- - src/core/lib/gprpp/load_file.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/match.h
- - src/core/lib/gprpp/notification.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/overload.h
- - src/core/lib/gprpp/packed_table.h
- - src/core/lib/gprpp/per_cpu.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/ref_counted_string.h
- - src/core/lib/gprpp/sorted_pack.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/table.h
- - src/core/lib/gprpp/time.h
- - src/core/lib/gprpp/time_averaged_stats.h
- - src/core/lib/gprpp/type_list.h
- - src/core/lib/gprpp/unique_type_name.h
- - src/core/lib/gprpp/validation_errors.h
- - src/core/lib/gprpp/work_serializer.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/chunked_vector.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/dual_ref_counted.h
+ - src/core/util/dump_args.h
+ - src/core/util/if_list.h
+ - src/core/util/load_file.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/match.h
+ - src/core/util/notification.h
+ - src/core/util/orphanable.h
+ - src/core/util/overload.h
+ - src/core/util/packed_table.h
+ - src/core/util/per_cpu.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/ref_counted_string.h
+ - src/core/util/sorted_pack.h
+ - src/core/util/status_helper.h
+ - src/core/util/table.h
+ - src/core/util/time.h
+ - src/core/util/time_averaged_stats.h
+ - src/core/util/type_list.h
+ - src/core/util/unique_type_name.h
+ - src/core/util/validation_errors.h
+ - src/core/util/work_serializer.h
- src/core/lib/iomgr/block_annotate.h
- src/core/lib/iomgr/buffer_list.h
- src/core/lib/iomgr/call_combiner.h
@@ -4849,15 +4849,15 @@ libs:
- src/core/lib/event_engine/work_queue/basic_work_queue.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/dump_args.cc
- - src/core/lib/gprpp/load_file.cc
- - src/core/lib/gprpp/per_cpu.cc
- - src/core/lib/gprpp/ref_counted_string.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
- - src/core/lib/gprpp/time_averaged_stats.cc
- - src/core/lib/gprpp/validation_errors.cc
- - src/core/lib/gprpp/work_serializer.cc
+ - src/core/util/dump_args.cc
+ - src/core/util/load_file.cc
+ - src/core/util/per_cpu.cc
+ - src/core/util/ref_counted_string.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
+ - src/core/util/time_averaged_stats.cc
+ - src/core/util/validation_errors.cc
+ - src/core/util/work_serializer.cc
- src/core/lib/iomgr/buffer_list.cc
- src/core/lib/iomgr/call_combiner.cc
- src/core/lib/iomgr/cfstream_handle.cc
@@ -5244,12 +5244,12 @@ targets:
headers:
- src/core/lib/debug/trace.h
- src/core/lib/event_engine/event_engine_context.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/down_cast.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/lib/promise/activity.h
- src/core/lib/promise/context.h
- src/core/lib/promise/detail/basic_seq.h
@@ -5398,7 +5398,7 @@ targets:
language: c++
headers:
- src/core/lib/debug/trace.h
- - src/core/lib/gprpp/bitset.h
+ - src/core/util/bitset.h
- src/core/lib/promise/all_ok.h
- src/core/lib/promise/detail/join_state.h
- src/core/lib/promise/detail/promise_like.h
@@ -5751,10 +5751,10 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/down_cast.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/util/avl.h
src:
- test/core/avl/avl_test.cc
@@ -6253,7 +6253,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/bitset.h
+ - src/core/util/bitset.h
- src/core/util/useful.h
src:
- test/core/gprpp/bitset_test.cc
@@ -6389,25 +6389,25 @@ targets:
- src/core/lib/event_engine/event_engine_context.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/chunked_vector.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/dual_ref_counted.h
- - src/core/lib/gprpp/dump_args.h
- - src/core/lib/gprpp/if_list.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/packed_table.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/ref_counted_string.h
- - src/core/lib/gprpp/sorted_pack.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/table.h
- - src/core/lib/gprpp/time.h
- - src/core/lib/gprpp/type_list.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/chunked_vector.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/dual_ref_counted.h
+ - src/core/util/dump_args.h
+ - src/core/util/if_list.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/orphanable.h
+ - src/core/util/packed_table.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/ref_counted_string.h
+ - src/core/util/sorted_pack.h
+ - src/core/util/status_helper.h
+ - src/core/util/table.h
+ - src/core/util/time.h
+ - src/core/util/type_list.h
- src/core/lib/iomgr/closure.h
- src/core/lib/iomgr/combiner.h
- src/core/lib/iomgr/error.h
@@ -6490,10 +6490,10 @@ targets:
- src/core/lib/debug/trace.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/dump_args.cc
- - src/core/lib/gprpp/ref_counted_string.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/dump_args.cc
+ - src/core/util/ref_counted_string.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
- src/core/lib/iomgr/closure.cc
- src/core/lib/iomgr/combiner.cc
- src/core/lib/iomgr/error.cc
@@ -7687,17 +7687,17 @@ targets:
- src/core/lib/event_engine/event_engine_context.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/chunked_vector.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/chunked_vector.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/status_helper.h
+ - src/core/util/time.h
- src/core/lib/iomgr/closure.h
- src/core/lib/iomgr/combiner.h
- src/core/lib/iomgr/error.h
@@ -7756,8 +7756,8 @@ targets:
- src/core/lib/debug/trace.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
- src/core/lib/iomgr/closure.cc
- src/core/lib/iomgr/combiner.cc
- src/core/lib/iomgr/error.cc
@@ -8160,7 +8160,7 @@ targets:
language: c++
headers:
- src/core/lib/event_engine/common_closures.h
- - src/core/lib/gprpp/notification.h
+ - src/core/util/notification.h
src:
- test/core/event_engine/common_closures_test.cc
deps:
@@ -8421,7 +8421,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/down_cast.h
+ - src/core/util/down_cast.h
- src/core/lib/promise/context.h
src:
- test/core/promise/context_test.cc
@@ -8447,7 +8447,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/cpp_impl_of.h
+ - src/core/util/cpp_impl_of.h
src:
- test/core/gprpp/cpp_impl_of_test.cc
deps:
@@ -8694,7 +8694,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/down_cast.h
+ - src/core/util/down_cast.h
src:
- test/core/gprpp/down_cast_test.cc
deps:
@@ -8733,9 +8733,9 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/dump_args.h
+ - src/core/util/dump_args.h
src:
- - src/core/lib/gprpp/dump_args.cc
+ - src/core/util/dump_args.cc
- test/core/gprpp/dump_args_test.cc
deps:
- gtest
@@ -8990,21 +8990,21 @@ targets:
headers:
- src/core/lib/channel/channel_args.h
- src/core/lib/event_engine/channel_args_endpoint_config.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/dual_ref_counted.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/ref_counted_string.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/down_cast.h
+ - src/core/util/dual_ref_counted.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/ref_counted_string.h
+ - src/core/util/time.h
- src/core/lib/surface/channel_stack_type.h
- src/core/util/avl.h
src:
- src/core/lib/channel/channel_args.cc
- src/core/lib/event_engine/channel_args_endpoint_config.cc
- - src/core/lib/gprpp/ref_counted_string.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/ref_counted_string.cc
+ - src/core/util/time.cc
- src/core/lib/surface/channel_stack_type.cc
- test/core/event_engine/endpoint_config_test.cc
deps:
@@ -9231,15 +9231,15 @@ targets:
- src/core/lib/event_engine/event_engine_context.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/down_cast.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/status_helper.h
+ - src/core/util/time.h
- src/core/lib/iomgr/closure.h
- src/core/lib/iomgr/combiner.h
- src/core/lib/iomgr/error.h
@@ -9284,8 +9284,8 @@ targets:
- src/core/lib/debug/trace.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
- src/core/lib/iomgr/closure.cc
- src/core/lib/iomgr/combiner.cc
- src/core/lib/iomgr/error.cc
@@ -9842,16 +9842,16 @@ targets:
- src/core/lib/event_engine/event_engine_context.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/status_helper.h
+ - src/core/util/time.h
- src/core/lib/iomgr/closure.h
- src/core/lib/iomgr/combiner.h
- src/core/lib/iomgr/error.h
@@ -9915,8 +9915,8 @@ targets:
- src/core/lib/debug/trace.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
- src/core/lib/iomgr/closure.cc
- src/core/lib/iomgr/combiner.cc
- src/core/lib/iomgr/error.cc
@@ -9973,16 +9973,16 @@ targets:
- src/core/lib/event_engine/event_engine_context.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/status_helper.h
+ - src/core/util/time.h
- src/core/lib/iomgr/closure.h
- src/core/lib/iomgr/combiner.h
- src/core/lib/iomgr/error.h
@@ -10051,8 +10051,8 @@ targets:
- src/core/lib/debug/trace.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
- src/core/lib/iomgr/closure.cc
- src/core/lib/iomgr/combiner.cc
- src/core/lib/iomgr/error.cc
@@ -11457,7 +11457,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/if_list.h
+ - src/core/util/if_list.h
src:
- test/core/gprpp/if_list_test.cc
deps:
@@ -11582,11 +11582,11 @@ targets:
headers:
- src/core/lib/debug/trace.h
- src/core/lib/event_engine/event_engine_context.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/down_cast.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/lib/promise/activity.h
- src/core/lib/promise/context.h
- src/core/lib/promise/detail/basic_seq.h
@@ -11719,34 +11719,34 @@ targets:
- src/core/lib/event_engine/work_queue/work_queue.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/chunked_vector.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/dual_ref_counted.h
- - src/core/lib/gprpp/dump_args.h
- - src/core/lib/gprpp/if_list.h
- - src/core/lib/gprpp/load_file.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/match.h
- - src/core/lib/gprpp/notification.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/overload.h
- - src/core/lib/gprpp/packed_table.h
- - src/core/lib/gprpp/per_cpu.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/ref_counted_string.h
- - src/core/lib/gprpp/sorted_pack.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/table.h
- - src/core/lib/gprpp/time.h
- - src/core/lib/gprpp/time_averaged_stats.h
- - src/core/lib/gprpp/type_list.h
- - src/core/lib/gprpp/unique_type_name.h
- - src/core/lib/gprpp/validation_errors.h
- - src/core/lib/gprpp/work_serializer.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/chunked_vector.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/dual_ref_counted.h
+ - src/core/util/dump_args.h
+ - src/core/util/if_list.h
+ - src/core/util/load_file.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/match.h
+ - src/core/util/notification.h
+ - src/core/util/orphanable.h
+ - src/core/util/overload.h
+ - src/core/util/packed_table.h
+ - src/core/util/per_cpu.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/ref_counted_string.h
+ - src/core/util/sorted_pack.h
+ - src/core/util/status_helper.h
+ - src/core/util/table.h
+ - src/core/util/time.h
+ - src/core/util/time_averaged_stats.h
+ - src/core/util/type_list.h
+ - src/core/util/unique_type_name.h
+ - src/core/util/validation_errors.h
+ - src/core/util/work_serializer.h
- src/core/lib/iomgr/block_annotate.h
- src/core/lib/iomgr/buffer_list.h
- src/core/lib/iomgr/call_combiner.h
@@ -12020,15 +12020,15 @@ targets:
- src/core/lib/event_engine/work_queue/basic_work_queue.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/dump_args.cc
- - src/core/lib/gprpp/load_file.cc
- - src/core/lib/gprpp/per_cpu.cc
- - src/core/lib/gprpp/ref_counted_string.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
- - src/core/lib/gprpp/time_averaged_stats.cc
- - src/core/lib/gprpp/validation_errors.cc
- - src/core/lib/gprpp/work_serializer.cc
+ - src/core/util/dump_args.cc
+ - src/core/util/load_file.cc
+ - src/core/util/per_cpu.cc
+ - src/core/util/ref_counted_string.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
+ - src/core/util/time_averaged_stats.cc
+ - src/core/util/validation_errors.cc
+ - src/core/util/work_serializer.cc
- src/core/lib/iomgr/buffer_list.cc
- src/core/lib/iomgr/call_combiner.cc
- src/core/lib/iomgr/cfstream_handle.cc
@@ -12222,16 +12222,16 @@ targets:
- src/core/lib/event_engine/event_engine_context.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/status_helper.h
+ - src/core/util/time.h
- src/core/lib/iomgr/closure.h
- src/core/lib/iomgr/combiner.h
- src/core/lib/iomgr/error.h
@@ -12292,8 +12292,8 @@ targets:
- src/core/lib/debug/trace.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
- src/core/lib/iomgr/closure.cc
- src/core/lib/iomgr/combiner.cc
- src/core/lib/iomgr/error.cc
@@ -12486,7 +12486,7 @@ targets:
language: c++
headers:
- src/core/lib/debug/trace.h
- - src/core/lib/gprpp/bitset.h
+ - src/core/util/bitset.h
- src/core/lib/promise/detail/join_state.h
- src/core/lib/promise/detail/promise_like.h
- src/core/lib/promise/join.h
@@ -12730,12 +12730,12 @@ targets:
headers:
- src/core/lib/debug/trace.h
- src/core/lib/event_engine/event_engine_context.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/down_cast.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/lib/promise/activity.h
- src/core/lib/promise/context.h
- src/core/lib/promise/detail/basic_seq.h
@@ -12916,16 +12916,16 @@ targets:
- src/core/lib/event_engine/event_engine_context.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/cpp_impl_of.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/cpp_impl_of.h
+ - src/core/util/down_cast.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
+ - src/core/util/status_helper.h
+ - src/core/util/time.h
- src/core/lib/iomgr/closure.h
- src/core/lib/iomgr/combiner.h
- src/core/lib/iomgr/error.h
@@ -12994,8 +12994,8 @@ targets:
- src/core/lib/debug/trace.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
- src/core/lib/iomgr/closure.cc
- src/core/lib/iomgr/combiner.cc
- src/core/lib/iomgr/error.cc
@@ -13042,8 +13042,8 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/match.h
- - src/core/lib/gprpp/overload.h
+ - src/core/util/match.h
+ - src/core/util/overload.h
src:
- test/core/gprpp/match_test.cc
deps:
@@ -13522,11 +13522,11 @@ targets:
language: c++
headers:
- src/core/lib/event_engine/event_engine_context.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/down_cast.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/lib/promise/activity.h
- src/core/lib/promise/context.h
- src/core/lib/promise/detail/promise_factory.h
@@ -13630,8 +13630,8 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/construct_destruct.h
- - src/core/lib/gprpp/no_destruct.h
+ - src/core/util/construct_destruct.h
+ - src/core/util/no_destruct.h
src:
- test/core/gprpp/no_destruct_test.cc
deps:
@@ -13794,7 +13794,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/notification.h
+ - src/core/util/notification.h
src:
- test/core/gprpp/notification_test.cc
deps:
@@ -13817,12 +13817,12 @@ targets:
language: c++
headers:
- src/core/lib/event_engine/event_engine_context.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/notification.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/down_cast.h
+ - src/core/util/notification.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/lib/promise/activity.h
- src/core/lib/promise/context.h
- src/core/lib/promise/detail/promise_factory.h
@@ -13981,7 +13981,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/overload.h
+ - src/core/util/overload.h
src:
- test/core/gprpp/overload_test.cc
deps:
@@ -14157,10 +14157,10 @@ targets:
- src/core/lib/debug/trace.h
- src/core/lib/experiments/config.h
- src/core/lib/experiments/experiments.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/manual_constructor.h
- - src/core/lib/gprpp/status_helper.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/bitset.h
+ - src/core/util/manual_constructor.h
+ - src/core/util/status_helper.h
+ - src/core/util/time.h
- src/core/lib/iomgr/closure.h
- src/core/lib/iomgr/combiner.h
- src/core/lib/iomgr/error.h
@@ -14199,8 +14199,8 @@ targets:
- src/core/lib/debug/trace.cc
- src/core/lib/experiments/config.cc
- src/core/lib/experiments/experiments.cc
- - src/core/lib/gprpp/status_helper.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/status_helper.cc
+ - src/core/util/time.cc
- src/core/lib/iomgr/closure.cc
- src/core/lib/iomgr/combiner.cc
- src/core/lib/iomgr/error.cc
@@ -14735,12 +14735,12 @@ targets:
headers:
- src/core/lib/debug/trace.h
- src/core/lib/event_engine/event_engine_context.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/bitset.h
+ - src/core/util/down_cast.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/lib/promise/activity.h
- src/core/lib/promise/context.h
- src/core/lib/promise/detail/basic_seq.h
@@ -18652,7 +18652,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/single_set_ptr.h
+ - src/core/util/single_set_ptr.h
src:
- test/core/gprpp/single_set_ptr_test.cc
deps:
@@ -18762,8 +18762,8 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/sorted_pack.h
- - src/core/lib/gprpp/type_list.h
+ - src/core/util/sorted_pack.h
+ - src/core/util/type_list.h
src:
- test/core/gprpp/sorted_pack_test.cc
deps:
@@ -19149,8 +19149,8 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/table.h
+ - src/core/util/bitset.h
+ - src/core/util/table.h
- src/core/util/useful.h
src:
- test/core/gprpp/table_test.cc
@@ -19371,14 +19371,14 @@ targets:
headers:
- src/core/lib/event_engine/posix_engine/timer.h
- src/core/lib/event_engine/posix_engine/timer_heap.h
- - src/core/lib/gprpp/bitset.h
- - src/core/lib/gprpp/time.h
- - src/core/lib/gprpp/time_averaged_stats.h
+ - src/core/util/bitset.h
+ - src/core/util/time.h
+ - src/core/util/time_averaged_stats.h
src:
- src/core/lib/event_engine/posix_engine/timer.cc
- src/core/lib/event_engine/posix_engine/timer_heap.cc
- - src/core/lib/gprpp/time.cc
- - src/core/lib/gprpp/time_averaged_stats.cc
+ - src/core/util/time.cc
+ - src/core/util/time_averaged_stats.cc
- test/core/event_engine/posix/timer_heap_test.cc
deps:
- gtest
@@ -19392,13 +19392,13 @@ targets:
headers:
- src/core/lib/event_engine/posix_engine/timer.h
- src/core/lib/event_engine/posix_engine/timer_heap.h
- - src/core/lib/gprpp/time.h
- - src/core/lib/gprpp/time_averaged_stats.h
+ - src/core/util/time.h
+ - src/core/util/time_averaged_stats.h
src:
- src/core/lib/event_engine/posix_engine/timer.cc
- src/core/lib/event_engine/posix_engine/timer_heap.cc
- - src/core/lib/gprpp/time.cc
- - src/core/lib/gprpp/time_averaged_stats.cc
+ - src/core/util/time.cc
+ - src/core/util/time_averaged_stats.cc
- test/core/event_engine/posix/timer_list_test.cc
deps:
- gtest
@@ -19443,9 +19443,9 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/time.h
+ - src/core/util/time.h
src:
- - src/core/lib/gprpp/time.cc
+ - src/core/util/time.cc
- test/core/gprpp/time_test.cc
deps:
- gtest
@@ -19760,10 +19760,10 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/down_cast.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/lib/resource_quota/thread_quota.h
src:
- src/core/lib/resource_quota/thread_quota.cc
@@ -20259,7 +20259,7 @@ targets:
language: c++
headers:
- src/core/lib/debug/trace.h
- - src/core/lib/gprpp/bitset.h
+ - src/core/util/bitset.h
- src/core/lib/promise/detail/join_state.h
- src/core/lib/promise/detail/promise_like.h
- src/core/lib/promise/detail/status.h
@@ -20320,7 +20320,7 @@ targets:
build: test
language: c++
headers:
- - src/core/lib/gprpp/unique_type_name.h
+ - src/core/util/unique_type_name.h
- src/core/util/useful.h
src:
- test/core/gprpp/unique_type_name_test.cc
@@ -20401,12 +20401,12 @@ targets:
language: c++
headers:
- src/core/lib/event_engine/event_engine_context.h
- - src/core/lib/gprpp/atomic_utils.h
- - src/core/lib/gprpp/down_cast.h
- - src/core/lib/gprpp/notification.h
- - src/core/lib/gprpp/orphanable.h
- - src/core/lib/gprpp/ref_counted.h
- - src/core/lib/gprpp/ref_counted_ptr.h
+ - src/core/util/atomic_utils.h
+ - src/core/util/down_cast.h
+ - src/core/util/notification.h
+ - src/core/util/orphanable.h
+ - src/core/util/ref_counted.h
+ - src/core/util/ref_counted_ptr.h
- src/core/lib/promise/activity.h
- src/core/lib/promise/context.h
- src/core/lib/promise/detail/promise_factory.h
@@ -20889,10 +20889,10 @@ targets:
language: c++
headers:
- src/core/ext/transport/chttp2/transport/write_size_policy.h
- - src/core/lib/gprpp/time.h
+ - src/core/util/time.h
src:
- src/core/ext/transport/chttp2/transport/write_size_policy.cc
- - src/core/lib/gprpp/time.cc
+ - src/core/util/time.cc
- test/core/transport/chttp2/write_size_policy_test.cc
deps:
- gtest
diff --git a/config.m4 b/config.m4
index 79e933c07d5..b75f5ff4ca4 100644
--- a/config.m4
+++ b/config.m4
@@ -513,33 +513,33 @@ if test "$PHP_GRPC" != "no"; then
src/core/lib/event_engine/work_queue/basic_work_queue.cc \
src/core/lib/experiments/config.cc \
src/core/lib/experiments/experiments.cc \
- src/core/lib/gprpp/crash.cc \
- src/core/lib/gprpp/dump_args.cc \
- src/core/lib/gprpp/examine_stack.cc \
- src/core/lib/gprpp/fork.cc \
- src/core/lib/gprpp/host_port.cc \
- src/core/lib/gprpp/linux/env.cc \
- src/core/lib/gprpp/load_file.cc \
- src/core/lib/gprpp/mpscq.cc \
- src/core/lib/gprpp/per_cpu.cc \
- src/core/lib/gprpp/posix/directory_reader.cc \
- src/core/lib/gprpp/posix/env.cc \
- src/core/lib/gprpp/posix/stat.cc \
- src/core/lib/gprpp/posix/thd.cc \
- src/core/lib/gprpp/ref_counted_string.cc \
- src/core/lib/gprpp/status_helper.cc \
- src/core/lib/gprpp/strerror.cc \
- src/core/lib/gprpp/tchar.cc \
- src/core/lib/gprpp/time.cc \
- src/core/lib/gprpp/time_averaged_stats.cc \
- src/core/lib/gprpp/time_util.cc \
- src/core/lib/gprpp/uuid_v4.cc \
- src/core/lib/gprpp/validation_errors.cc \
- src/core/lib/gprpp/windows/directory_reader.cc \
- src/core/lib/gprpp/windows/env.cc \
- src/core/lib/gprpp/windows/stat.cc \
- src/core/lib/gprpp/windows/thd.cc \
- src/core/lib/gprpp/work_serializer.cc \
+ src/core/util/crash.cc \
+ src/core/util/dump_args.cc \
+ src/core/util/examine_stack.cc \
+ src/core/util/fork.cc \
+ src/core/util/host_port.cc \
+ src/core/util/linux/env.cc \
+ src/core/util/load_file.cc \
+ src/core/util/mpscq.cc \
+ src/core/util/per_cpu.cc \
+ src/core/util/posix/directory_reader.cc \
+ src/core/util/posix/env.cc \
+ src/core/util/posix/stat.cc \
+ src/core/util/posix/thd.cc \
+ src/core/util/ref_counted_string.cc \
+ src/core/util/status_helper.cc \
+ src/core/util/strerror.cc \
+ src/core/util/tchar.cc \
+ src/core/util/time.cc \
+ src/core/util/time_averaged_stats.cc \
+ src/core/util/time_util.cc \
+ src/core/util/uuid_v4.cc \
+ src/core/util/validation_errors.cc \
+ src/core/util/windows/directory_reader.cc \
+ src/core/util/windows/env.cc \
+ src/core/util/windows/stat.cc \
+ src/core/util/windows/thd.cc \
+ src/core/util/work_serializer.cc \
src/core/lib/iomgr/buffer_list.cc \
src/core/lib/iomgr/call_combiner.cc \
src/core/lib/iomgr/cfstream_handle.cc \
@@ -1530,10 +1530,10 @@ if test "$PHP_GRPC" != "no"; then
PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/event_engine/windows)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/event_engine/work_queue)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/experiments)
- PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/gprpp)
- PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/gprpp/linux)
- PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/gprpp/posix)
- PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/gprpp/windows)
+ PHP_ADD_BUILD_DIR($ext_builddir/src/core/util)
+ PHP_ADD_BUILD_DIR($ext_builddir/src/core/util/linux)
+ PHP_ADD_BUILD_DIR($ext_builddir/src/core/util/posix)
+ PHP_ADD_BUILD_DIR($ext_builddir/src/core/util/windows)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/iomgr)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/lib/iomgr/event_engine_shims)
PHP_ADD_BUILD_DIR($ext_builddir/src/core/util)
diff --git a/fuzztest/core/transport/chttp2/hpack_encoder_timeout_test.cc b/fuzztest/core/transport/chttp2/hpack_encoder_timeout_test.cc
index 6ab0dfadb10..dab3d8f8431 100644
--- a/fuzztest/core/transport/chttp2/hpack_encoder_timeout_test.cc
+++ b/fuzztest/core/transport/chttp2/hpack_encoder_timeout_test.cc
@@ -27,7 +27,7 @@
#include "src/core/ext/transport/chttp2/transport/hpack_encoder.h"
#include "src/core/ext/transport/chttp2/transport/hpack_parser.h"
-#include "src/core/lib/gprpp/time.h"
+#include "src/core/util/time.h"
#include "src/core/lib/slice/slice_buffer.h"
#include "src/core/lib/transport/metadata_batch.h"
diff --git a/gRPC-C++.podspec b/gRPC-C++.podspec
index 8753ed96916..b1389d7f303 100644
--- a/gRPC-C++.podspec
+++ b/gRPC-C++.podspec
@@ -959,54 +959,54 @@ Pod::Spec.new do |s|
'src/core/lib/event_engine/work_queue/work_queue.h',
'src/core/lib/experiments/config.h',
'src/core/lib/experiments/experiments.h',
- 'src/core/lib/gprpp/atomic_utils.h',
- 'src/core/lib/gprpp/bitset.h',
- 'src/core/lib/gprpp/chunked_vector.h',
- 'src/core/lib/gprpp/construct_destruct.h',
- 'src/core/lib/gprpp/cpp_impl_of.h',
- 'src/core/lib/gprpp/crash.h',
- 'src/core/lib/gprpp/debug_location.h',
- 'src/core/lib/gprpp/directory_reader.h',
- 'src/core/lib/gprpp/down_cast.h',
- 'src/core/lib/gprpp/dual_ref_counted.h',
- 'src/core/lib/gprpp/dump_args.h',
- 'src/core/lib/gprpp/env.h',
- 'src/core/lib/gprpp/examine_stack.h',
- 'src/core/lib/gprpp/fork.h',
- 'src/core/lib/gprpp/host_port.h',
- 'src/core/lib/gprpp/if_list.h',
- 'src/core/lib/gprpp/load_file.h',
- 'src/core/lib/gprpp/manual_constructor.h',
- 'src/core/lib/gprpp/match.h',
- 'src/core/lib/gprpp/memory.h',
- 'src/core/lib/gprpp/mpscq.h',
- 'src/core/lib/gprpp/no_destruct.h',
- 'src/core/lib/gprpp/notification.h',
- 'src/core/lib/gprpp/orphanable.h',
- 'src/core/lib/gprpp/overload.h',
- 'src/core/lib/gprpp/packed_table.h',
- 'src/core/lib/gprpp/per_cpu.h',
- 'src/core/lib/gprpp/ref_counted.h',
- 'src/core/lib/gprpp/ref_counted_ptr.h',
- 'src/core/lib/gprpp/ref_counted_string.h',
- 'src/core/lib/gprpp/single_set_ptr.h',
- 'src/core/lib/gprpp/sorted_pack.h',
- 'src/core/lib/gprpp/stat.h',
- 'src/core/lib/gprpp/status_helper.h',
- 'src/core/lib/gprpp/strerror.h',
- 'src/core/lib/gprpp/sync.h',
- 'src/core/lib/gprpp/table.h',
- 'src/core/lib/gprpp/tchar.h',
- 'src/core/lib/gprpp/thd.h',
- 'src/core/lib/gprpp/time.h',
- 'src/core/lib/gprpp/time_averaged_stats.h',
- 'src/core/lib/gprpp/time_util.h',
- 'src/core/lib/gprpp/type_list.h',
- 'src/core/lib/gprpp/unique_type_name.h',
- 'src/core/lib/gprpp/uuid_v4.h',
- 'src/core/lib/gprpp/validation_errors.h',
- 'src/core/lib/gprpp/work_serializer.h',
- 'src/core/lib/gprpp/xxhash_inline.h',
+ 'src/core/util/atomic_utils.h',
+ 'src/core/util/bitset.h',
+ 'src/core/util/chunked_vector.h',
+ 'src/core/util/construct_destruct.h',
+ 'src/core/util/cpp_impl_of.h',
+ 'src/core/util/crash.h',
+ 'src/core/util/debug_location.h',
+ 'src/core/util/directory_reader.h',
+ 'src/core/util/down_cast.h',
+ 'src/core/util/dual_ref_counted.h',
+ 'src/core/util/dump_args.h',
+ 'src/core/util/env.h',
+ 'src/core/util/examine_stack.h',
+ 'src/core/util/fork.h',
+ 'src/core/util/host_port.h',
+ 'src/core/util/if_list.h',
+ 'src/core/util/load_file.h',
+ 'src/core/util/manual_constructor.h',
+ 'src/core/util/match.h',
+ 'src/core/util/memory.h',
+ 'src/core/util/mpscq.h',
+ 'src/core/util/no_destruct.h',
+ 'src/core/util/notification.h',
+ 'src/core/util/orphanable.h',
+ 'src/core/util/overload.h',
+ 'src/core/util/packed_table.h',
+ 'src/core/util/per_cpu.h',
+ 'src/core/util/ref_counted.h',
+ 'src/core/util/ref_counted_ptr.h',
+ 'src/core/util/ref_counted_string.h',
+ 'src/core/util/single_set_ptr.h',
+ 'src/core/util/sorted_pack.h',
+ 'src/core/util/stat.h',
+ 'src/core/util/status_helper.h',
+ 'src/core/util/strerror.h',
+ 'src/core/util/sync.h',
+ 'src/core/util/table.h',
+ 'src/core/util/tchar.h',
+ 'src/core/util/thd.h',
+ 'src/core/util/time.h',
+ 'src/core/util/time_averaged_stats.h',
+ 'src/core/util/time_util.h',
+ 'src/core/util/type_list.h',
+ 'src/core/util/unique_type_name.h',
+ 'src/core/util/uuid_v4.h',
+ 'src/core/util/validation_errors.h',
+ 'src/core/util/work_serializer.h',
+ 'src/core/util/xxhash_inline.h',
'src/core/lib/iomgr/block_annotate.h',
'src/core/lib/iomgr/buffer_list.h',
'src/core/lib/iomgr/call_combiner.h',
@@ -2234,54 +2234,54 @@ Pod::Spec.new do |s|
'src/core/lib/event_engine/work_queue/work_queue.h',
'src/core/lib/experiments/config.h',
'src/core/lib/experiments/experiments.h',
- 'src/core/lib/gprpp/atomic_utils.h',
- 'src/core/lib/gprpp/bitset.h',
- 'src/core/lib/gprpp/chunked_vector.h',
- 'src/core/lib/gprpp/construct_destruct.h',
- 'src/core/lib/gprpp/cpp_impl_of.h',
- 'src/core/lib/gprpp/crash.h',
- 'src/core/lib/gprpp/debug_location.h',
- 'src/core/lib/gprpp/directory_reader.h',
- 'src/core/lib/gprpp/down_cast.h',
- 'src/core/lib/gprpp/dual_ref_counted.h',
- 'src/core/lib/gprpp/dump_args.h',
- 'src/core/lib/gprpp/env.h',
- 'src/core/lib/gprpp/examine_stack.h',
- 'src/core/lib/gprpp/fork.h',
- 'src/core/lib/gprpp/host_port.h',
- 'src/core/lib/gprpp/if_list.h',
- 'src/core/lib/gprpp/load_file.h',
- 'src/core/lib/gprpp/manual_constructor.h',
- 'src/core/lib/gprpp/match.h',
- 'src/core/lib/gprpp/memory.h',
- 'src/core/lib/gprpp/mpscq.h',
- 'src/core/lib/gprpp/no_destruct.h',
- 'src/core/lib/gprpp/notification.h',
- 'src/core/lib/gprpp/orphanable.h',
- 'src/core/lib/gprpp/overload.h',
- 'src/core/lib/gprpp/packed_table.h',
- 'src/core/lib/gprpp/per_cpu.h',
- 'src/core/lib/gprpp/ref_counted.h',
- 'src/core/lib/gprpp/ref_counted_ptr.h',
- 'src/core/lib/gprpp/ref_counted_string.h',
- 'src/core/lib/gprpp/single_set_ptr.h',
- 'src/core/lib/gprpp/sorted_pack.h',
- 'src/core/lib/gprpp/stat.h',
- 'src/core/lib/gprpp/status_helper.h',
- 'src/core/lib/gprpp/strerror.h',
- 'src/core/lib/gprpp/sync.h',
- 'src/core/lib/gprpp/table.h',
- 'src/core/lib/gprpp/tchar.h',
- 'src/core/lib/gprpp/thd.h',
- 'src/core/lib/gprpp/time.h',
- 'src/core/lib/gprpp/time_averaged_stats.h',
- 'src/core/lib/gprpp/time_util.h',
- 'src/core/lib/gprpp/type_list.h',
- 'src/core/lib/gprpp/unique_type_name.h',
- 'src/core/lib/gprpp/uuid_v4.h',
- 'src/core/lib/gprpp/validation_errors.h',
- 'src/core/lib/gprpp/work_serializer.h',
- 'src/core/lib/gprpp/xxhash_inline.h',
+ 'src/core/util/atomic_utils.h',
+ 'src/core/util/bitset.h',
+ 'src/core/util/chunked_vector.h',
+ 'src/core/util/construct_destruct.h',
+ 'src/core/util/cpp_impl_of.h',
+ 'src/core/util/crash.h',
+ 'src/core/util/debug_location.h',
+ 'src/core/util/directory_reader.h',
+ 'src/core/util/down_cast.h',
+ 'src/core/util/dual_ref_counted.h',
+ 'src/core/util/dump_args.h',
+ 'src/core/util/env.h',
+ 'src/core/util/examine_stack.h',
+ 'src/core/util/fork.h',
+ 'src/core/util/host_port.h',
+ 'src/core/util/if_list.h',
+ 'src/core/util/load_file.h',
+ 'src/core/util/manual_constructor.h',
+ 'src/core/util/match.h',
+ 'src/core/util/memory.h',
+ 'src/core/util/mpscq.h',
+ 'src/core/util/no_destruct.h',
+ 'src/core/util/notification.h',
+ 'src/core/util/orphanable.h',
+ 'src/core/util/overload.h',
+ 'src/core/util/packed_table.h',
+ 'src/core/util/per_cpu.h',
+ 'src/core/util/ref_counted.h',
+ 'src/core/util/ref_counted_ptr.h',
+ 'src/core/util/ref_counted_string.h',
+ 'src/core/util/single_set_ptr.h',
+ 'src/core/util/sorted_pack.h',
+ 'src/core/util/stat.h',
+ 'src/core/util/status_helper.h',
+ 'src/core/util/strerror.h',
+ 'src/core/util/sync.h',
+ 'src/core/util/table.h',
+ 'src/core/util/tchar.h',
+ 'src/core/util/thd.h',
+ 'src/core/util/time.h',
+ 'src/core/util/time_averaged_stats.h',
+ 'src/core/util/time_util.h',
+ 'src/core/util/type_list.h',
+ 'src/core/util/unique_type_name.h',
+ 'src/core/util/uuid_v4.h',
+ 'src/core/util/validation_errors.h',
+ 'src/core/util/work_serializer.h',
+ 'src/core/util/xxhash_inline.h',
'src/core/lib/iomgr/block_annotate.h',
'src/core/lib/iomgr/buffer_list.h',
'src/core/lib/iomgr/call_combiner.h',
diff --git a/gRPC-Core.podspec b/gRPC-Core.podspec
index 528b93db132..ae387ec590e 100644
--- a/gRPC-Core.podspec
+++ b/gRPC-Core.podspec
@@ -1366,81 +1366,81 @@ Pod::Spec.new do |s|
'src/core/lib/experiments/config.h',
'src/core/lib/experiments/experiments.cc',
'src/core/lib/experiments/experiments.h',
- 'src/core/lib/gprpp/atomic_utils.h',
- 'src/core/lib/gprpp/bitset.h',
- 'src/core/lib/gprpp/chunked_vector.h',
- 'src/core/lib/gprpp/construct_destruct.h',
- 'src/core/lib/gprpp/cpp_impl_of.h',
- 'src/core/lib/gprpp/crash.cc',
- 'src/core/lib/gprpp/crash.h',
- 'src/core/lib/gprpp/debug_location.h',
- 'src/core/lib/gprpp/directory_reader.h',
- 'src/core/lib/gprpp/down_cast.h',
- 'src/core/lib/gprpp/dual_ref_counted.h',
- 'src/core/lib/gprpp/dump_args.cc',
- 'src/core/lib/gprpp/dump_args.h',
- 'src/core/lib/gprpp/env.h',
- 'src/core/lib/gprpp/examine_stack.cc',
- 'src/core/lib/gprpp/examine_stack.h',
- 'src/core/lib/gprpp/fork.cc',
- 'src/core/lib/gprpp/fork.h',
- 'src/core/lib/gprpp/host_port.cc',
- 'src/core/lib/gprpp/host_port.h',
- 'src/core/lib/gprpp/if_list.h',
- 'src/core/lib/gprpp/linux/env.cc',
- 'src/core/lib/gprpp/load_file.cc',
- 'src/core/lib/gprpp/load_file.h',
- 'src/core/lib/gprpp/manual_constructor.h',
- 'src/core/lib/gprpp/match.h',
- 'src/core/lib/gprpp/memory.h',
- 'src/core/lib/gprpp/mpscq.cc',
- 'src/core/lib/gprpp/mpscq.h',
- 'src/core/lib/gprpp/no_destruct.h',
- 'src/core/lib/gprpp/notification.h',
- 'src/core/lib/gprpp/orphanable.h',
- 'src/core/lib/gprpp/overload.h',
- 'src/core/lib/gprpp/packed_table.h',
- 'src/core/lib/gprpp/per_cpu.cc',
- 'src/core/lib/gprpp/per_cpu.h',
- 'src/core/lib/gprpp/posix/directory_reader.cc',
- 'src/core/lib/gprpp/posix/env.cc',
- 'src/core/lib/gprpp/posix/stat.cc',
- 'src/core/lib/gprpp/posix/thd.cc',
- 'src/core/lib/gprpp/ref_counted.h',
- 'src/core/lib/gprpp/ref_counted_ptr.h',
- 'src/core/lib/gprpp/ref_counted_string.cc',
- 'src/core/lib/gprpp/ref_counted_string.h',
- 'src/core/lib/gprpp/single_set_ptr.h',
- 'src/core/lib/gprpp/sorted_pack.h',
- 'src/core/lib/gprpp/stat.h',
- 'src/core/lib/gprpp/status_helper.cc',
- 'src/core/lib/gprpp/status_helper.h',
- 'src/core/lib/gprpp/strerror.cc',
- 'src/core/lib/gprpp/strerror.h',
- 'src/core/lib/gprpp/sync.h',
- 'src/core/lib/gprpp/table.h',
- 'src/core/lib/gprpp/tchar.cc',
- 'src/core/lib/gprpp/tchar.h',
- 'src/core/lib/gprpp/thd.h',
- 'src/core/lib/gprpp/time.cc',
- 'src/core/lib/gprpp/time.h',
- 'src/core/lib/gprpp/time_averaged_stats.cc',
- 'src/core/lib/gprpp/time_averaged_stats.h',
- 'src/core/lib/gprpp/time_util.cc',
- 'src/core/lib/gprpp/time_util.h',
- 'src/core/lib/gprpp/type_list.h',
- 'src/core/lib/gprpp/unique_type_name.h',
- 'src/core/lib/gprpp/uuid_v4.cc',
- 'src/core/lib/gprpp/uuid_v4.h',
- 'src/core/lib/gprpp/validation_errors.cc',
- 'src/core/lib/gprpp/validation_errors.h',
- 'src/core/lib/gprpp/windows/directory_reader.cc',
- 'src/core/lib/gprpp/windows/env.cc',
- 'src/core/lib/gprpp/windows/stat.cc',
- 'src/core/lib/gprpp/windows/thd.cc',
- 'src/core/lib/gprpp/work_serializer.cc',
- 'src/core/lib/gprpp/work_serializer.h',
- 'src/core/lib/gprpp/xxhash_inline.h',
+ 'src/core/util/atomic_utils.h',
+ 'src/core/util/bitset.h',
+ 'src/core/util/chunked_vector.h',
+ 'src/core/util/construct_destruct.h',
+ 'src/core/util/cpp_impl_of.h',
+ 'src/core/util/crash.cc',
+ 'src/core/util/crash.h',
+ 'src/core/util/debug_location.h',
+ 'src/core/util/directory_reader.h',
+ 'src/core/util/down_cast.h',
+ 'src/core/util/dual_ref_counted.h',
+ 'src/core/util/dump_args.cc',
+ 'src/core/util/dump_args.h',
+ 'src/core/util/env.h',
+ 'src/core/util/examine_stack.cc',
+ 'src/core/util/examine_stack.h',
+ 'src/core/util/fork.cc',
+ 'src/core/util/fork.h',
+ 'src/core/util/host_port.cc',
+ 'src/core/util/host_port.h',
+ 'src/core/util/if_list.h',
+ 'src/core/util/linux/env.cc',
+ 'src/core/util/load_file.cc',
+ 'src/core/util/load_file.h',
+ 'src/core/util/manual_constructor.h',
+ 'src/core/util/match.h',
+ 'src/core/util/memory.h',
+ 'src/core/util/mpscq.cc',
+ 'src/core/util/mpscq.h',
+ 'src/core/util/no_destruct.h',
+ 'src/core/util/notification.h',
+ 'src/core/util/orphanable.h',
+ 'src/core/util/overload.h',
+ 'src/core/util/packed_table.h',
+ 'src/core/util/per_cpu.cc',
+ 'src/core/util/per_cpu.h',
+ 'src/core/util/posix/directory_reader.cc',
+ 'src/core/util/posix/env.cc',
+ 'src/core/util/posix/stat.cc',
+ 'src/core/util/posix/thd.cc',
+ 'src/core/util/ref_counted.h',
+ 'src/core/util/ref_counted_ptr.h',
+ 'src/core/util/ref_counted_string.cc',
+ 'src/core/util/ref_counted_string.h',
+ 'src/core/util/single_set_ptr.h',
+ 'src/core/util/sorted_pack.h',
+ 'src/core/util/stat.h',
+ 'src/core/util/status_helper.cc',
+ 'src/core/util/status_helper.h',
+ 'src/core/util/strerror.cc',
+ 'src/core/util/strerror.h',
+ 'src/core/util/sync.h',
+ 'src/core/util/table.h',
+ 'src/core/util/tchar.cc',
+ 'src/core/util/tchar.h',
+ 'src/core/util/thd.h',
+ 'src/core/util/time.cc',
+ 'src/core/util/time.h',
+ 'src/core/util/time_averaged_stats.cc',
+ 'src/core/util/time_averaged_stats.h',
+ 'src/core/util/time_util.cc',
+ 'src/core/util/time_util.h',
+ 'src/core/util/type_list.h',
+ 'src/core/util/unique_type_name.h',
+ 'src/core/util/uuid_v4.cc',
+ 'src/core/util/uuid_v4.h',
+ 'src/core/util/validation_errors.cc',
+ 'src/core/util/validation_errors.h',
+ 'src/core/util/windows/directory_reader.cc',
+ 'src/core/util/windows/env.cc',
+ 'src/core/util/windows/stat.cc',
+ 'src/core/util/windows/thd.cc',
+ 'src/core/util/work_serializer.cc',
+ 'src/core/util/work_serializer.h',
+ 'src/core/util/xxhash_inline.h',
'src/core/lib/iomgr/block_annotate.h',
'src/core/lib/iomgr/buffer_list.cc',
'src/core/lib/iomgr/buffer_list.h',
@@ -3017,54 +3017,54 @@ Pod::Spec.new do |s|
'src/core/lib/event_engine/work_queue/work_queue.h',
'src/core/lib/experiments/config.h',
'src/core/lib/experiments/experiments.h',
- 'src/core/lib/gprpp/atomic_utils.h',
- 'src/core/lib/gprpp/bitset.h',
- 'src/core/lib/gprpp/chunked_vector.h',
- 'src/core/lib/gprpp/construct_destruct.h',
- 'src/core/lib/gprpp/cpp_impl_of.h',
- 'src/core/lib/gprpp/crash.h',
- 'src/core/lib/gprpp/debug_location.h',
- 'src/core/lib/gprpp/directory_reader.h',
- 'src/core/lib/gprpp/down_cast.h',
- 'src/core/lib/gprpp/dual_ref_counted.h',
- 'src/core/lib/gprpp/dump_args.h',
- 'src/core/lib/gprpp/env.h',
- 'src/core/lib/gprpp/examine_stack.h',
- 'src/core/lib/gprpp/fork.h',
- 'src/core/lib/gprpp/host_port.h',
- 'src/core/lib/gprpp/if_list.h',
- 'src/core/lib/gprpp/load_file.h',
- 'src/core/lib/gprpp/manual_constructor.h',
- 'src/core/lib/gprpp/match.h',
- 'src/core/lib/gprpp/memory.h',
- 'src/core/lib/gprpp/mpscq.h',
- 'src/core/lib/gprpp/no_destruct.h',
- 'src/core/lib/gprpp/notification.h',
- 'src/core/lib/gprpp/orphanable.h',
- 'src/core/lib/gprpp/overload.h',
- 'src/core/lib/gprpp/packed_table.h',
- 'src/core/lib/gprpp/per_cpu.h',
- 'src/core/lib/gprpp/ref_counted.h',
- 'src/core/lib/gprpp/ref_counted_ptr.h',
- 'src/core/lib/gprpp/ref_counted_string.h',
- 'src/core/lib/gprpp/single_set_ptr.h',
- 'src/core/lib/gprpp/sorted_pack.h',
- 'src/core/lib/gprpp/stat.h',
- 'src/core/lib/gprpp/status_helper.h',
- 'src/core/lib/gprpp/strerror.h',
- 'src/core/lib/gprpp/sync.h',
- 'src/core/lib/gprpp/table.h',
- 'src/core/lib/gprpp/tchar.h',
- 'src/core/lib/gprpp/thd.h',
- 'src/core/lib/gprpp/time.h',
- 'src/core/lib/gprpp/time_averaged_stats.h',
- 'src/core/lib/gprpp/time_util.h',
- 'src/core/lib/gprpp/type_list.h',
- 'src/core/lib/gprpp/unique_type_name.h',
- 'src/core/lib/gprpp/uuid_v4.h',
- 'src/core/lib/gprpp/validation_errors.h',
- 'src/core/lib/gprpp/work_serializer.h',
- 'src/core/lib/gprpp/xxhash_inline.h',
+ 'src/core/util/atomic_utils.h',
+ 'src/core/util/bitset.h',
+ 'src/core/util/chunked_vector.h',
+ 'src/core/util/construct_destruct.h',
+ 'src/core/util/cpp_impl_of.h',
+ 'src/core/util/crash.h',
+ 'src/core/util/debug_location.h',
+ 'src/core/util/directory_reader.h',
+ 'src/core/util/down_cast.h',
+ 'src/core/util/dual_ref_counted.h',
+ 'src/core/util/dump_args.h',
+ 'src/core/util/env.h',
+ 'src/core/util/examine_stack.h',
+ 'src/core/util/fork.h',
+ 'src/core/util/host_port.h',
+ 'src/core/util/if_list.h',
+ 'src/core/util/load_file.h',
+ 'src/core/util/manual_constructor.h',
+ 'src/core/util/match.h',
+ 'src/core/util/memory.h',
+ 'src/core/util/mpscq.h',
+ 'src/core/util/no_destruct.h',
+ 'src/core/util/notification.h',
+ 'src/core/util/orphanable.h',
+ 'src/core/util/overload.h',
+ 'src/core/util/packed_table.h',
+ 'src/core/util/per_cpu.h',
+ 'src/core/util/ref_counted.h',
+ 'src/core/util/ref_counted_ptr.h',
+ 'src/core/util/ref_counted_string.h',
+ 'src/core/util/single_set_ptr.h',
+ 'src/core/util/sorted_pack.h',
+ 'src/core/util/stat.h',
+ 'src/core/util/status_helper.h',
+ 'src/core/util/strerror.h',
+ 'src/core/util/sync.h',
+ 'src/core/util/table.h',
+ 'src/core/util/tchar.h',
+ 'src/core/util/thd.h',
+ 'src/core/util/time.h',
+ 'src/core/util/time_averaged_stats.h',
+ 'src/core/util/time_util.h',
+ 'src/core/util/type_list.h',
+ 'src/core/util/unique_type_name.h',
+ 'src/core/util/uuid_v4.h',
+ 'src/core/util/validation_errors.h',
+ 'src/core/util/work_serializer.h',
+ 'src/core/util/xxhash_inline.h',
'src/core/lib/iomgr/block_annotate.h',
'src/core/lib/iomgr/buffer_list.h',
'src/core/lib/iomgr/call_combiner.h',
diff --git a/grpc.gemspec b/grpc.gemspec
index adab660276e..845e8a42004 100644
--- a/grpc.gemspec
+++ b/grpc.gemspec
@@ -1253,81 +1253,81 @@ Gem::Specification.new do |s|
s.files += %w( src/core/lib/experiments/config.h )
s.files += %w( src/core/lib/experiments/experiments.cc )
s.files += %w( src/core/lib/experiments/experiments.h )
- s.files += %w( src/core/lib/gprpp/atomic_utils.h )
- s.files += %w( src/core/lib/gprpp/bitset.h )
- s.files += %w( src/core/lib/gprpp/chunked_vector.h )
- s.files += %w( src/core/lib/gprpp/construct_destruct.h )
- s.files += %w( src/core/lib/gprpp/cpp_impl_of.h )
- s.files += %w( src/core/lib/gprpp/crash.cc )
- s.files += %w( src/core/lib/gprpp/crash.h )
- s.files += %w( src/core/lib/gprpp/debug_location.h )
- s.files += %w( src/core/lib/gprpp/directory_reader.h )
- s.files += %w( src/core/lib/gprpp/down_cast.h )
- s.files += %w( src/core/lib/gprpp/dual_ref_counted.h )
- s.files += %w( src/core/lib/gprpp/dump_args.cc )
- s.files += %w( src/core/lib/gprpp/dump_args.h )
- s.files += %w( src/core/lib/gprpp/env.h )
- s.files += %w( src/core/lib/gprpp/examine_stack.cc )
- s.files += %w( src/core/lib/gprpp/examine_stack.h )
- s.files += %w( src/core/lib/gprpp/fork.cc )
- s.files += %w( src/core/lib/gprpp/fork.h )
- s.files += %w( src/core/lib/gprpp/host_port.cc )
- s.files += %w( src/core/lib/gprpp/host_port.h )
- s.files += %w( src/core/lib/gprpp/if_list.h )
- s.files += %w( src/core/lib/gprpp/linux/env.cc )
- s.files += %w( src/core/lib/gprpp/load_file.cc )
- s.files += %w( src/core/lib/gprpp/load_file.h )
- s.files += %w( src/core/lib/gprpp/manual_constructor.h )
- s.files += %w( src/core/lib/gprpp/match.h )
- s.files += %w( src/core/lib/gprpp/memory.h )
- s.files += %w( src/core/lib/gprpp/mpscq.cc )
- s.files += %w( src/core/lib/gprpp/mpscq.h )
- s.files += %w( src/core/lib/gprpp/no_destruct.h )
- s.files += %w( src/core/lib/gprpp/notification.h )
- s.files += %w( src/core/lib/gprpp/orphanable.h )
- s.files += %w( src/core/lib/gprpp/overload.h )
- s.files += %w( src/core/lib/gprpp/packed_table.h )
- s.files += %w( src/core/lib/gprpp/per_cpu.cc )
- s.files += %w( src/core/lib/gprpp/per_cpu.h )
- s.files += %w( src/core/lib/gprpp/posix/directory_reader.cc )
- s.files += %w( src/core/lib/gprpp/posix/env.cc )
- s.files += %w( src/core/lib/gprpp/posix/stat.cc )
- s.files += %w( src/core/lib/gprpp/posix/thd.cc )
- s.files += %w( src/core/lib/gprpp/ref_counted.h )
- s.files += %w( src/core/lib/gprpp/ref_counted_ptr.h )
- s.files += %w( src/core/lib/gprpp/ref_counted_string.cc )
- s.files += %w( src/core/lib/gprpp/ref_counted_string.h )
- s.files += %w( src/core/lib/gprpp/single_set_ptr.h )
- s.files += %w( src/core/lib/gprpp/sorted_pack.h )
- s.files += %w( src/core/lib/gprpp/stat.h )
- s.files += %w( src/core/lib/gprpp/status_helper.cc )
- s.files += %w( src/core/lib/gprpp/status_helper.h )
- s.files += %w( src/core/lib/gprpp/strerror.cc )
- s.files += %w( src/core/lib/gprpp/strerror.h )
- s.files += %w( src/core/lib/gprpp/sync.h )
- s.files += %w( src/core/lib/gprpp/table.h )
- s.files += %w( src/core/lib/gprpp/tchar.cc )
- s.files += %w( src/core/lib/gprpp/tchar.h )
- s.files += %w( src/core/lib/gprpp/thd.h )
- s.files += %w( src/core/lib/gprpp/time.cc )
- s.files += %w( src/core/lib/gprpp/time.h )
- s.files += %w( src/core/lib/gprpp/time_averaged_stats.cc )
- s.files += %w( src/core/lib/gprpp/time_averaged_stats.h )
- s.files += %w( src/core/lib/gprpp/time_util.cc )
- s.files += %w( src/core/lib/gprpp/time_util.h )
- s.files += %w( src/core/lib/gprpp/type_list.h )
- s.files += %w( src/core/lib/gprpp/unique_type_name.h )
- s.files += %w( src/core/lib/gprpp/uuid_v4.cc )
- s.files += %w( src/core/lib/gprpp/uuid_v4.h )
- s.files += %w( src/core/lib/gprpp/validation_errors.cc )
- s.files += %w( src/core/lib/gprpp/validation_errors.h )
- s.files += %w( src/core/lib/gprpp/windows/directory_reader.cc )
- s.files += %w( src/core/lib/gprpp/windows/env.cc )
- s.files += %w( src/core/lib/gprpp/windows/stat.cc )
- s.files += %w( src/core/lib/gprpp/windows/thd.cc )
- s.files += %w( src/core/lib/gprpp/work_serializer.cc )
- s.files += %w( src/core/lib/gprpp/work_serializer.h )
- s.files += %w( src/core/lib/gprpp/xxhash_inline.h )
+ s.files += %w( src/core/util/atomic_utils.h )
+ s.files += %w( src/core/util/bitset.h )
+ s.files += %w( src/core/util/chunked_vector.h )
+ s.files += %w( src/core/util/construct_destruct.h )
+ s.files += %w( src/core/util/cpp_impl_of.h )
+ s.files += %w( src/core/util/crash.cc )
+ s.files += %w( src/core/util/crash.h )
+ s.files += %w( src/core/util/debug_location.h )
+ s.files += %w( src/core/util/directory_reader.h )
+ s.files += %w( src/core/util/down_cast.h )
+ s.files += %w( src/core/util/dual_ref_counted.h )
+ s.files += %w( src/core/util/dump_args.cc )
+ s.files += %w( src/core/util/dump_args.h )
+ s.files += %w( src/core/util/env.h )
+ s.files += %w( src/core/util/examine_stack.cc )
+ s.files += %w( src/core/util/examine_stack.h )
+ s.files += %w( src/core/util/fork.cc )
+ s.files += %w( src/core/util/fork.h )
+ s.files += %w( src/core/util/host_port.cc )
+ s.files += %w( src/core/util/host_port.h )
+ s.files += %w( src/core/util/if_list.h )
+ s.files += %w( src/core/util/linux/env.cc )
+ s.files += %w( src/core/util/load_file.cc )
+ s.files += %w( src/core/util/load_file.h )
+ s.files += %w( src/core/util/manual_constructor.h )
+ s.files += %w( src/core/util/match.h )
+ s.files += %w( src/core/util/memory.h )
+ s.files += %w( src/core/util/mpscq.cc )
+ s.files += %w( src/core/util/mpscq.h )
+ s.files += %w( src/core/util/no_destruct.h )
+ s.files += %w( src/core/util/notification.h )
+ s.files += %w( src/core/util/orphanable.h )
+ s.files += %w( src/core/util/overload.h )
+ s.files += %w( src/core/util/packed_table.h )
+ s.files += %w( src/core/util/per_cpu.cc )
+ s.files += %w( src/core/util/per_cpu.h )
+ s.files += %w( src/core/util/posix/directory_reader.cc )
+ s.files += %w( src/core/util/posix/env.cc )
+ s.files += %w( src/core/util/posix/stat.cc )
+ s.files += %w( src/core/util/posix/thd.cc )
+ s.files += %w( src/core/util/ref_counted.h )
+ s.files += %w( src/core/util/ref_counted_ptr.h )
+ s.files += %w( src/core/util/ref_counted_string.cc )
+ s.files += %w( src/core/util/ref_counted_string.h )
+ s.files += %w( src/core/util/single_set_ptr.h )
+ s.files += %w( src/core/util/sorted_pack.h )
+ s.files += %w( src/core/util/stat.h )
+ s.files += %w( src/core/util/status_helper.cc )
+ s.files += %w( src/core/util/status_helper.h )
+ s.files += %w( src/core/util/strerror.cc )
+ s.files += %w( src/core/util/strerror.h )
+ s.files += %w( src/core/util/sync.h )
+ s.files += %w( src/core/util/table.h )
+ s.files += %w( src/core/util/tchar.cc )
+ s.files += %w( src/core/util/tchar.h )
+ s.files += %w( src/core/util/thd.h )
+ s.files += %w( src/core/util/time.cc )
+ s.files += %w( src/core/util/time.h )
+ s.files += %w( src/core/util/time_averaged_stats.cc )
+ s.files += %w( src/core/util/time_averaged_stats.h )
+ s.files += %w( src/core/util/time_util.cc )
+ s.files += %w( src/core/util/time_util.h )
+ s.files += %w( src/core/util/type_list.h )
+ s.files += %w( src/core/util/unique_type_name.h )
+ s.files += %w( src/core/util/uuid_v4.cc )
+ s.files += %w( src/core/util/uuid_v4.h )
+ s.files += %w( src/core/util/validation_errors.cc )
+ s.files += %w( src/core/util/validation_errors.h )
+ s.files += %w( src/core/util/windows/directory_reader.cc )
+ s.files += %w( src/core/util/windows/env.cc )
+ s.files += %w( src/core/util/windows/stat.cc )
+ s.files += %w( src/core/util/windows/thd.cc )
+ s.files += %w( src/core/util/work_serializer.cc )
+ s.files += %w( src/core/util/work_serializer.h )
+ s.files += %w( src/core/util/xxhash_inline.h )
s.files += %w( src/core/lib/iomgr/block_annotate.h )
s.files += %w( src/core/lib/iomgr/buffer_list.cc )
s.files += %w( src/core/lib/iomgr/buffer_list.h )
diff --git a/grpc.gyp b/grpc.gyp
index c9ad0b79cf9..2d3dfb9968e 100644
--- a/grpc.gyp
+++ b/grpc.gyp
@@ -227,21 +227,21 @@
'src/core/lib/gpr/windows/sync.cc',
'src/core/lib/gpr/windows/time.cc',
'src/core/lib/gpr/windows/tmpfile.cc',
- 'src/core/lib/gprpp/crash.cc',
- 'src/core/lib/gprpp/examine_stack.cc',
- 'src/core/lib/gprpp/fork.cc',
- 'src/core/lib/gprpp/host_port.cc',
- 'src/core/lib/gprpp/linux/env.cc',
- 'src/core/lib/gprpp/mpscq.cc',
- 'src/core/lib/gprpp/posix/env.cc',
- 'src/core/lib/gprpp/posix/stat.cc',
- 'src/core/lib/gprpp/posix/thd.cc',
- 'src/core/lib/gprpp/strerror.cc',
- 'src/core/lib/gprpp/tchar.cc',
- 'src/core/lib/gprpp/time_util.cc',
- 'src/core/lib/gprpp/windows/env.cc',
- 'src/core/lib/gprpp/windows/stat.cc',
- 'src/core/lib/gprpp/windows/thd.cc',
+ 'src/core/util/crash.cc',
+ 'src/core/util/examine_stack.cc',
+ 'src/core/util/fork.cc',
+ 'src/core/util/host_port.cc',
+ 'src/core/util/linux/env.cc',
+ 'src/core/util/mpscq.cc',
+ 'src/core/util/posix/env.cc',
+ 'src/core/util/posix/stat.cc',
+ 'src/core/util/posix/thd.cc',
+ 'src/core/util/strerror.cc',
+ 'src/core/util/tchar.cc',
+ 'src/core/util/time_util.cc',
+ 'src/core/util/windows/env.cc',
+ 'src/core/util/windows/stat.cc',
+ 'src/core/util/windows/thd.cc',
],
},
{
@@ -768,16 +768,16 @@
'src/core/lib/event_engine/work_queue/basic_work_queue.cc',
'src/core/lib/experiments/config.cc',
'src/core/lib/experiments/experiments.cc',
- 'src/core/lib/gprpp/load_file.cc',
- 'src/core/lib/gprpp/per_cpu.cc',
- 'src/core/lib/gprpp/posix/directory_reader.cc',
- 'src/core/lib/gprpp/ref_counted_string.cc',
- 'src/core/lib/gprpp/status_helper.cc',
- 'src/core/lib/gprpp/time.cc',
- 'src/core/lib/gprpp/time_averaged_stats.cc',
- 'src/core/lib/gprpp/validation_errors.cc',
- 'src/core/lib/gprpp/windows/directory_reader.cc',
- 'src/core/lib/gprpp/work_serializer.cc',
+ 'src/core/util/load_file.cc',
+ 'src/core/util/per_cpu.cc',
+ 'src/core/util/posix/directory_reader.cc',
+ 'src/core/util/ref_counted_string.cc',
+ 'src/core/util/status_helper.cc',
+ 'src/core/util/time.cc',
+ 'src/core/util/time_averaged_stats.cc',
+ 'src/core/util/validation_errors.cc',
+ 'src/core/util/windows/directory_reader.cc',
+ 'src/core/util/work_serializer.cc',
'src/core/lib/handshaker/proxy_mapper_registry.cc',
'src/core/lib/http/format_request.cc',
'src/core/lib/http/httpcli.cc',
@@ -1311,14 +1311,14 @@
'src/core/lib/event_engine/work_queue/basic_work_queue.cc',
'src/core/lib/experiments/config.cc',
'src/core/lib/experiments/experiments.cc',
- 'src/core/lib/gprpp/load_file.cc',
- 'src/core/lib/gprpp/per_cpu.cc',
- 'src/core/lib/gprpp/ref_counted_string.cc',
- 'src/core/lib/gprpp/status_helper.cc',
- 'src/core/lib/gprpp/time.cc',
- 'src/core/lib/gprpp/time_averaged_stats.cc',
- 'src/core/lib/gprpp/validation_errors.cc',
- 'src/core/lib/gprpp/work_serializer.cc',
+ 'src/core/util/load_file.cc',
+ 'src/core/util/per_cpu.cc',
+ 'src/core/util/ref_counted_string.cc',
+ 'src/core/util/status_helper.cc',
+ 'src/core/util/time.cc',
+ 'src/core/util/time_averaged_stats.cc',
+ 'src/core/util/validation_errors.cc',
+ 'src/core/util/work_serializer.cc',
'src/core/lib/handshaker/proxy_mapper_registry.cc',
'src/core/lib/http/format_request.cc',
'src/core/lib/http/httpcli.cc',
@@ -2120,14 +2120,14 @@
'src/core/lib/event_engine/work_queue/basic_work_queue.cc',
'src/core/lib/experiments/config.cc',
'src/core/lib/experiments/experiments.cc',
- 'src/core/lib/gprpp/load_file.cc',
- 'src/core/lib/gprpp/per_cpu.cc',
- 'src/core/lib/gprpp/ref_counted_string.cc',
- 'src/core/lib/gprpp/status_helper.cc',
- 'src/core/lib/gprpp/time.cc',
- 'src/core/lib/gprpp/time_averaged_stats.cc',
- 'src/core/lib/gprpp/validation_errors.cc',
- 'src/core/lib/gprpp/work_serializer.cc',
+ 'src/core/util/load_file.cc',
+ 'src/core/util/per_cpu.cc',
+ 'src/core/util/ref_counted_string.cc',
+ 'src/core/util/status_helper.cc',
+ 'src/core/util/time.cc',
+ 'src/core/util/time_averaged_stats.cc',
+ 'src/core/util/validation_errors.cc',
+ 'src/core/util/work_serializer.cc',
'src/core/lib/handshaker/proxy_mapper_registry.cc',
'src/core/lib/iomgr/buffer_list.cc',
'src/core/lib/iomgr/call_combiner.cc',
diff --git a/include/grpcpp/impl/sync.h b/include/grpcpp/impl/sync.h
index 9288459196a..54ada5cf886 100644
--- a/include/grpcpp/impl/sync.h
+++ b/include/grpcpp/impl/sync.h
@@ -37,9 +37,9 @@
// The core library is not accessible in C++ codegen headers, and vice versa.
// Thus, we need to have duplicate headers with similar functionality.
// Make sure any change to this file is also reflected in
-// src/core/lib/gprpp/sync.h too.
+// src/core/util/sync.h too.
//
-// Whenever possible, prefer "src/core/lib/gprpp/sync.h" over this file,
+// Whenever possible, prefer "src/core/util/sync.h" over this file,
// since in core we do not rely on g_core_codegen_interface and hence do not
// pay the costs of virtual function calls.
diff --git a/package.xml b/package.xml
index bb799c90382..c17bf278384 100644
--- a/package.xml
+++ b/package.xml
@@ -1235,81 +1235,81 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/core/BUILD b/src/core/BUILD
index 7f967981c5a..a8bd59a3a76 100644
--- a/src/core/BUILD
+++ b/src/core/BUILD
@@ -51,10 +51,10 @@ grpc_cc_library(
grpc_cc_library(
name = "dump_args",
srcs = [
- "lib/gprpp/dump_args.cc",
+ "util/dump_args.cc",
],
hdrs = [
- "lib/gprpp/dump_args.h",
+ "util/dump_args.h",
],
external_deps = [
"absl/functional:any_invocable",
@@ -170,7 +170,7 @@ grpc_cc_library(
grpc_cc_library(
name = "atomic_utils",
language = "c++",
- public_hdrs = ["lib/gprpp/atomic_utils.h"],
+ public_hdrs = ["util/atomic_utils.h"],
deps = ["//:gpr"],
)
@@ -251,10 +251,10 @@ grpc_cc_library(
grpc_cc_library(
name = "examine_stack",
srcs = [
- "lib/gprpp/examine_stack.cc",
+ "util/examine_stack.cc",
],
hdrs = [
- "lib/gprpp/examine_stack.h",
+ "util/examine_stack.h",
],
external_deps = ["absl/types:optional"],
deps = ["//:gpr_platform"],
@@ -286,7 +286,7 @@ grpc_cc_library(
name = "gpr_manual_constructor",
srcs = [],
hdrs = [
- "lib/gprpp/manual_constructor.h",
+ "util/manual_constructor.h",
],
language = "c++",
deps = [
@@ -311,12 +311,12 @@ grpc_cc_library(
grpc_cc_library(
name = "env",
srcs = [
- "lib/gprpp/linux/env.cc",
- "lib/gprpp/posix/env.cc",
- "lib/gprpp/windows/env.cc",
+ "util/linux/env.cc",
+ "util/posix/env.cc",
+ "util/windows/env.cc",
],
hdrs = [
- "lib/gprpp/env.h",
+ "util/env.h",
],
external_deps = ["absl/types:optional"],
deps = [
@@ -328,11 +328,11 @@ grpc_cc_library(
grpc_cc_library(
name = "directory_reader",
srcs = [
- "lib/gprpp/posix/directory_reader.cc",
- "lib/gprpp/windows/directory_reader.cc",
+ "util/posix/directory_reader.cc",
+ "util/windows/directory_reader.cc",
],
hdrs = [
- "lib/gprpp/directory_reader.h",
+ "util/directory_reader.h",
],
external_deps = [
"absl/functional:function_ref",
@@ -348,7 +348,7 @@ grpc_cc_library(
grpc_cc_library(
name = "chunked_vector",
- hdrs = ["lib/gprpp/chunked_vector.h"],
+ hdrs = ["util/chunked_vector.h"],
external_deps = [
"absl/log:check",
],
@@ -362,17 +362,17 @@ grpc_cc_library(
grpc_cc_library(
name = "construct_destruct",
language = "c++",
- public_hdrs = ["lib/gprpp/construct_destruct.h"],
+ public_hdrs = ["util/construct_destruct.h"],
deps = ["//:gpr_platform"],
)
grpc_cc_library(
name = "status_helper",
srcs = [
- "lib/gprpp/status_helper.cc",
+ "util/status_helper.cc",
],
hdrs = [
- "lib/gprpp/status_helper.h",
+ "util/status_helper.h",
],
external_deps = [
"absl/log:check",
@@ -397,7 +397,7 @@ grpc_cc_library(
grpc_cc_library(
name = "unique_type_name",
- hdrs = ["lib/gprpp/unique_type_name.h"],
+ hdrs = ["util/unique_type_name.h"],
external_deps = ["absl/strings"],
language = "c++",
deps = [
@@ -409,10 +409,10 @@ grpc_cc_library(
grpc_cc_library(
name = "validation_errors",
srcs = [
- "lib/gprpp/validation_errors.cc",
+ "util/validation_errors.cc",
],
hdrs = [
- "lib/gprpp/validation_errors.h",
+ "util/validation_errors.h",
],
external_deps = [
"absl/log:log",
@@ -426,7 +426,7 @@ grpc_cc_library(
grpc_cc_library(
name = "overload",
language = "c++",
- public_hdrs = ["lib/gprpp/overload.h"],
+ public_hdrs = ["util/overload.h"],
deps = ["//:gpr_platform"],
)
@@ -434,7 +434,7 @@ grpc_cc_library(
name = "match",
external_deps = ["absl/types:variant"],
language = "c++",
- public_hdrs = ["lib/gprpp/match.h"],
+ public_hdrs = ["util/match.h"],
deps = [
"overload",
"//:gpr_platform",
@@ -448,7 +448,7 @@ grpc_cc_library(
"absl/utility",
],
language = "c++",
- public_hdrs = ["lib/gprpp/table.h"],
+ public_hdrs = ["util/table.h"],
deps = [
"bitset",
"//:gpr_platform",
@@ -457,7 +457,7 @@ grpc_cc_library(
grpc_cc_library(
name = "packed_table",
- hdrs = ["lib/gprpp/packed_table.h"],
+ hdrs = ["util/packed_table.h"],
language = "c++",
deps = [
"sorted_pack",
@@ -469,7 +469,7 @@ grpc_cc_library(
grpc_cc_library(
name = "bitset",
language = "c++",
- public_hdrs = ["lib/gprpp/bitset.h"],
+ public_hdrs = ["util/bitset.h"],
deps = [
"useful",
"//:gpr_platform",
@@ -479,7 +479,7 @@ grpc_cc_library(
grpc_cc_library(
name = "no_destruct",
language = "c++",
- public_hdrs = ["lib/gprpp/no_destruct.h"],
+ public_hdrs = ["util/no_destruct.h"],
deps = [
"construct_destruct",
"//:gpr_platform",
@@ -489,10 +489,10 @@ grpc_cc_library(
grpc_cc_library(
name = "tchar",
srcs = [
- "lib/gprpp/tchar.cc",
+ "util/tchar.cc",
],
hdrs = [
- "lib/gprpp/tchar.h",
+ "util/tchar.h",
],
deps = ["//:gpr_platform"],
)
@@ -1216,7 +1216,7 @@ grpc_cc_library(
"absl/log:log",
],
language = "c++",
- public_hdrs = ["lib/gprpp/ref_counted.h"],
+ public_hdrs = ["util/ref_counted.h"],
deps = [
"atomic_utils",
"down_cast",
@@ -1233,7 +1233,7 @@ grpc_cc_library(
"absl/log:log",
],
language = "c++",
- public_hdrs = ["lib/gprpp/dual_ref_counted.h"],
+ public_hdrs = ["util/dual_ref_counted.h"],
deps = [
"down_cast",
"ref_counted",
@@ -1247,10 +1247,10 @@ grpc_cc_library(
grpc_cc_library(
name = "ref_counted_string",
srcs = [
- "lib/gprpp/ref_counted_string.cc",
+ "util/ref_counted_string.cc",
],
hdrs = [
- "lib/gprpp/ref_counted_string.h",
+ "util/ref_counted_string.h",
],
external_deps = ["absl/strings"],
language = "c++",
@@ -1263,10 +1263,10 @@ grpc_cc_library(
grpc_cc_library(
name = "uuid_v4",
- srcs = ["lib/gprpp/uuid_v4.cc"],
+ srcs = ["util/uuid_v4.cc"],
external_deps = ["absl/strings:str_format"],
language = "c++",
- public_hdrs = ["lib/gprpp/uuid_v4.h"],
+ public_hdrs = ["util/uuid_v4.h"],
deps = ["//:gpr"],
)
@@ -1694,10 +1694,10 @@ grpc_cc_library(
grpc_cc_library(
name = "time",
srcs = [
- "lib/gprpp/time.cc",
+ "util/time.cc",
],
hdrs = [
- "lib/gprpp/time.h",
+ "util/time.h",
],
external_deps = [
"absl/log:check",
@@ -1766,9 +1766,9 @@ grpc_cc_library(
grpc_cc_library(
name = "time_averaged_stats",
- srcs = ["lib/gprpp/time_averaged_stats.cc"],
+ srcs = ["util/time_averaged_stats.cc"],
hdrs = [
- "lib/gprpp/time_averaged_stats.h",
+ "util/time_averaged_stats.h",
],
deps = ["//:gpr"],
)
@@ -3027,10 +3027,10 @@ grpc_cc_library(
grpc_cc_library(
name = "per_cpu",
srcs = [
- "lib/gprpp/per_cpu.cc",
+ "util/per_cpu.cc",
],
hdrs = [
- "lib/gprpp/per_cpu.h",
+ "util/per_cpu.h",
],
deps = [
"useful",
@@ -3061,10 +3061,10 @@ grpc_cc_library(
grpc_cc_library(
name = "load_file",
srcs = [
- "lib/gprpp/load_file.cc",
+ "util/load_file.cc",
],
hdrs = [
- "lib/gprpp/load_file.h",
+ "util/load_file.h",
],
external_deps = [
"absl/cleanup",
@@ -3161,7 +3161,7 @@ grpc_cc_library(
grpc_cc_library(
name = "single_set_ptr",
hdrs = [
- "lib/gprpp/single_set_ptr.h",
+ "util/single_set_ptr.h",
],
external_deps = [
"absl/log:check",
@@ -3219,7 +3219,7 @@ grpc_cc_library(
grpc_cc_library(
name = "notification",
hdrs = [
- "lib/gprpp/notification.h",
+ "util/notification.h",
],
external_deps = ["absl/time"],
deps = ["//:gpr"],
@@ -3770,7 +3770,7 @@ grpc_cc_library(
grpc_cc_library(
name = "sorted_pack",
hdrs = [
- "lib/gprpp/sorted_pack.h",
+ "util/sorted_pack.h",
],
language = "c++",
deps = [
@@ -3782,7 +3782,7 @@ grpc_cc_library(
grpc_cc_library(
name = "type_list",
hdrs = [
- "lib/gprpp/type_list.h",
+ "util/type_list.h",
],
language = "c++",
)
@@ -3790,7 +3790,7 @@ grpc_cc_library(
grpc_cc_library(
name = "if_list",
hdrs = [
- "lib/gprpp/if_list.h",
+ "util/if_list.h",
],
language = "c++",
deps = ["//:gpr_platform"],
@@ -4198,10 +4198,10 @@ grpc_cc_library(
grpc_cc_library(
name = "strerror",
srcs = [
- "lib/gprpp/strerror.cc",
+ "util/strerror.cc",
],
hdrs = [
- "lib/gprpp/strerror.h",
+ "util/strerror.h",
],
external_deps = ["absl/strings:str_format"],
deps = ["//:gpr_platform"],
@@ -5795,7 +5795,7 @@ grpc_cc_library(
grpc_cc_library(
name = "down_cast",
- hdrs = ["lib/gprpp/down_cast.h"],
+ hdrs = ["util/down_cast.h"],
external_deps = [
"absl/base:config",
"absl/log:check",
@@ -5861,7 +5861,7 @@ grpc_cc_library(
grpc_cc_library(
name = "xxhash_inline",
- hdrs = ["lib/gprpp/xxhash_inline.h"],
+ hdrs = ["util/xxhash_inline.h"],
external_deps = ["xxhash"],
language = "c++",
deps = ["//:gpr_platform"],
diff --git a/src/core/channelz/channel_trace.cc b/src/core/channelz/channel_trace.cc
index 6e6884cd703..14aeb059b5d 100644
--- a/src/core/channelz/channel_trace.cc
+++ b/src/core/channelz/channel_trace.cc
@@ -28,7 +28,7 @@
#include
#include "src/core/channelz/channelz.h"
-#include "src/core/lib/gprpp/time.h"
+#include "src/core/util/time.h"
#include "src/core/lib/slice/slice.h"
#include "src/core/lib/slice/slice_internal.h"
#include "src/core/util/string.h"
diff --git a/src/core/channelz/channel_trace.h b/src/core/channelz/channel_trace.h
index c6c245c5cf5..eb9ef19e643 100644
--- a/src/core/channelz/channel_trace.h
+++ b/src/core/channelz/channel_trace.h
@@ -28,8 +28,8 @@
#include
#include
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
-#include "src/core/lib/gprpp/sync.h"
+#include "src/core/util/ref_counted_ptr.h"
+#include "src/core/util/sync.h"
#include "src/core/util/json/json.h"
namespace grpc_core {
diff --git a/src/core/channelz/channelz.h b/src/core/channelz/channelz.h
index e441edc81a6..e2527d002fa 100644
--- a/src/core/channelz/channelz.h
+++ b/src/core/channelz/channelz.h
@@ -38,10 +38,10 @@
#include
#include "src/core/channelz/channel_trace.h"
-#include "src/core/lib/gprpp/per_cpu.h"
-#include "src/core/lib/gprpp/ref_counted.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
-#include "src/core/lib/gprpp/sync.h"
+#include "src/core/util/per_cpu.h"
+#include "src/core/util/ref_counted.h"
+#include "src/core/util/ref_counted_ptr.h"
+#include "src/core/util/sync.h"
#include "src/core/util/json/json.h"
#include "src/core/util/time_precise.h"
#include "src/core/util/useful.h"
diff --git a/src/core/channelz/channelz_registry.cc b/src/core/channelz/channelz_registry.cc
index 8089cc273bf..87194091e0e 100644
--- a/src/core/channelz/channelz_registry.cc
+++ b/src/core/channelz/channelz_registry.cc
@@ -34,7 +34,7 @@
#include
#include "src/core/channelz/channelz.h"
-#include "src/core/lib/gprpp/sync.h"
+#include "src/core/util/sync.h"
#include "src/core/lib/iomgr/exec_ctx.h"
#include "src/core/util/json/json.h"
#include "src/core/util/json/json_writer.h"
diff --git a/src/core/channelz/channelz_registry.h b/src/core/channelz/channelz_registry.h
index 39525597b4f..f849ac1ac84 100644
--- a/src/core/channelz/channelz_registry.h
+++ b/src/core/channelz/channelz_registry.h
@@ -28,8 +28,8 @@
#include
#include "src/core/channelz/channelz.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
-#include "src/core/lib/gprpp/sync.h"
+#include "src/core/util/ref_counted_ptr.h"
+#include "src/core/util/sync.h"
namespace grpc_core {
namespace channelz {
diff --git a/src/core/client_channel/backup_poller.cc b/src/core/client_channel/backup_poller.cc
index 94adb85d44f..1d8234de626 100644
--- a/src/core/client_channel/backup_poller.cc
+++ b/src/core/client_channel/backup_poller.cc
@@ -29,8 +29,8 @@
#include
#include "src/core/lib/config/config_vars.h"
-#include "src/core/lib/gprpp/memory.h"
-#include "src/core/lib/gprpp/time.h"
+#include "src/core/util/memory.h"
+#include "src/core/util/time.h"
#include "src/core/lib/iomgr/closure.h"
#include "src/core/lib/iomgr/error.h"
#include "src/core/lib/iomgr/iomgr.h"
diff --git a/src/core/client_channel/client_channel.cc b/src/core/client_channel/client_channel.cc
index 5395efce7b9..84626bea009 100644
--- a/src/core/client_channel/client_channel.cc
+++ b/src/core/client_channel/client_channel.cc
@@ -66,13 +66,13 @@
#include "src/core/lib/config/core_configuration.h"
#include "src/core/lib/debug/trace.h"
#include "src/core/lib/experiments/experiments.h"
-#include "src/core/lib/gprpp/crash.h"
-#include "src/core/lib/gprpp/debug_location.h"
-#include "src/core/lib/gprpp/manual_constructor.h"
-#include "src/core/lib/gprpp/status_helper.h"
-#include "src/core/lib/gprpp/sync.h"
-#include "src/core/lib/gprpp/unique_type_name.h"
-#include "src/core/lib/gprpp/work_serializer.h"
+#include "src/core/util/crash.h"
+#include "src/core/util/debug_location.h"
+#include "src/core/util/manual_constructor.h"
+#include "src/core/util/status_helper.h"
+#include "src/core/util/sync.h"
+#include "src/core/util/unique_type_name.h"
+#include "src/core/util/work_serializer.h"
#include "src/core/lib/iomgr/exec_ctx.h"
#include "src/core/lib/iomgr/resolved_address.h"
#include "src/core/lib/promise/cancel_callback.h"
diff --git a/src/core/client_channel/client_channel.h b/src/core/client_channel/client_channel.h
index abe53bbf689..475b53d0d00 100644
--- a/src/core/client_channel/client_channel.h
+++ b/src/core/client_channel/client_channel.h
@@ -27,7 +27,7 @@
#include "src/core/client_channel/config_selector.h"
#include "src/core/client_channel/subchannel.h"
#include "src/core/ext/filters/channel_idle/idle_filter_state.h"
-#include "src/core/lib/gprpp/single_set_ptr.h"
+#include "src/core/util/single_set_ptr.h"
#include "src/core/lib/promise/observable.h"
#include "src/core/lib/surface/channel.h"
#include "src/core/lib/transport/metadata.h"
diff --git a/src/core/client_channel/client_channel_factory.h b/src/core/client_channel/client_channel_factory.h
index e72f9923dd1..1d07749535a 100644
--- a/src/core/client_channel/client_channel_factory.h
+++ b/src/core/client_channel/client_channel_factory.h
@@ -23,7 +23,7 @@
#include "src/core/client_channel/subchannel.h"
#include "src/core/lib/channel/channel_args.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
+#include "src/core/util/ref_counted_ptr.h"
#include "src/core/lib/iomgr/resolved_address.h"
namespace grpc_core {
diff --git a/src/core/client_channel/client_channel_filter.cc b/src/core/client_channel/client_channel_filter.cc
index f0c58c1580f..28bbd5322c9 100644
--- a/src/core/client_channel/client_channel_filter.cc
+++ b/src/core/client_channel/client_channel_filter.cc
@@ -68,13 +68,13 @@
#include "src/core/lib/config/core_configuration.h"
#include "src/core/lib/debug/trace.h"
#include "src/core/lib/experiments/experiments.h"
-#include "src/core/lib/gprpp/crash.h"
-#include "src/core/lib/gprpp/debug_location.h"
-#include "src/core/lib/gprpp/manual_constructor.h"
-#include "src/core/lib/gprpp/status_helper.h"
-#include "src/core/lib/gprpp/sync.h"
-#include "src/core/lib/gprpp/unique_type_name.h"
-#include "src/core/lib/gprpp/work_serializer.h"
+#include "src/core/util/crash.h"
+#include "src/core/util/debug_location.h"
+#include "src/core/util/manual_constructor.h"
+#include "src/core/util/status_helper.h"
+#include "src/core/util/sync.h"
+#include "src/core/util/unique_type_name.h"
+#include "src/core/util/work_serializer.h"
#include "src/core/lib/iomgr/exec_ctx.h"
#include "src/core/lib/iomgr/polling_entity.h"
#include "src/core/lib/iomgr/pollset_set.h"
diff --git a/src/core/client_channel/client_channel_filter.h b/src/core/client_channel/client_channel_filter.h
index 9233c846c6f..b21d3513c1f 100644
--- a/src/core/client_channel/client_channel_filter.h
+++ b/src/core/client_channel/client_channel_filter.h
@@ -47,12 +47,12 @@
#include "src/core/lib/channel/channel_fwd.h"
#include "src/core/lib/channel/channel_stack.h"
#include "src/core/lib/channel/context.h"
-#include "src/core/lib/gprpp/orphanable.h"
-#include "src/core/lib/gprpp/ref_counted.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
-#include "src/core/lib/gprpp/sync.h"
-#include "src/core/lib/gprpp/time.h"
-#include "src/core/lib/gprpp/work_serializer.h"
+#include "src/core/util/orphanable.h"
+#include "src/core/util/ref_counted.h"
+#include "src/core/util/ref_counted_ptr.h"
+#include "src/core/util/sync.h"
+#include "src/core/util/time.h"
+#include "src/core/util/work_serializer.h"
#include "src/core/lib/iomgr/call_combiner.h"
#include "src/core/lib/iomgr/closure.h"
#include "src/core/lib/iomgr/error.h"
diff --git a/src/core/client_channel/client_channel_internal.h b/src/core/client_channel/client_channel_internal.h
index b4d204834ab..62ca5a424b4 100644
--- a/src/core/client_channel/client_channel_internal.h
+++ b/src/core/client_channel/client_channel_internal.h
@@ -27,7 +27,7 @@
#include
#include "src/core/lib/channel/context.h"
-#include "src/core/lib/gprpp/unique_type_name.h"
+#include "src/core/util/unique_type_name.h"
#include "src/core/lib/resource_quota/arena.h"
#include "src/core/lib/transport/call_destination.h"
#include "src/core/load_balancing/lb_policy.h"
diff --git a/src/core/client_channel/client_channel_service_config.h b/src/core/client_channel/client_channel_service_config.h
index 60340e2685f..d74f6d77fb0 100644
--- a/src/core/client_channel/client_channel_service_config.h
+++ b/src/core/client_channel/client_channel_service_config.h
@@ -29,9 +29,9 @@
#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/config/core_configuration.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
-#include "src/core/lib/gprpp/time.h"
-#include "src/core/lib/gprpp/validation_errors.h"
+#include "src/core/util/ref_counted_ptr.h"
+#include "src/core/util/time.h"
+#include "src/core/util/validation_errors.h"
#include "src/core/load_balancing/lb_policy.h"
#include "src/core/service_config/service_config_parser.h"
#include "src/core/util/json/json.h"
diff --git a/src/core/client_channel/config_selector.h b/src/core/client_channel/config_selector.h
index 0a0a6d54c80..c6b1ff30ede 100644
--- a/src/core/client_channel/config_selector.h
+++ b/src/core/client_channel/config_selector.h
@@ -33,8 +33,8 @@
#include "src/core/client_channel/client_channel_internal.h"
#include "src/core/lib/channel/channel_fwd.h"
-#include "src/core/lib/gprpp/ref_counted.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
+#include "src/core/util/ref_counted.h"
+#include "src/core/util/ref_counted_ptr.h"
#include "src/core/lib/resource_quota/arena.h"
#include "src/core/lib/slice/slice.h"
#include "src/core/lib/transport/metadata_batch.h"
diff --git a/src/core/client_channel/connector.h b/src/core/client_channel/connector.h
index 5c218dd7d41..328255534d6 100644
--- a/src/core/client_channel/connector.h
+++ b/src/core/client_channel/connector.h
@@ -21,9 +21,9 @@
#include "src/core/channelz/channelz.h"
#include "src/core/lib/channel/channel_args.h"
-#include "src/core/lib/gprpp/orphanable.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
-#include "src/core/lib/gprpp/time.h"
+#include "src/core/util/orphanable.h"
+#include "src/core/util/ref_counted_ptr.h"
+#include "src/core/util/time.h"
#include "src/core/lib/iomgr/closure.h"
#include "src/core/lib/iomgr/error.h"
#include "src/core/lib/iomgr/iomgr_fwd.h"
diff --git a/src/core/client_channel/dynamic_filters.cc b/src/core/client_channel/dynamic_filters.cc
index c589f860807..2f0d1d85040 100644
--- a/src/core/client_channel/dynamic_filters.cc
+++ b/src/core/client_channel/dynamic_filters.cc
@@ -33,7 +33,7 @@
#include "src/core/lib/channel/channel_stack.h"
#include "src/core/lib/channel/channel_stack_builder_impl.h"
#include "src/core/lib/debug/trace.h"
-#include "src/core/lib/gprpp/status_helper.h"
+#include "src/core/util/status_helper.h"
#include "src/core/lib/surface/channel_stack_type.h"
#include "src/core/lib/surface/lame_client.h"
#include "src/core/util/alloc.h"
diff --git a/src/core/client_channel/dynamic_filters.h b/src/core/client_channel/dynamic_filters.h
index d6aa9b4cf7e..a540c056d91 100644
--- a/src/core/client_channel/dynamic_filters.h
+++ b/src/core/client_channel/dynamic_filters.h
@@ -28,10 +28,10 @@
#include "src/core/lib/channel/channel_fwd.h"
#include "src/core/lib/channel/channel_stack.h"
#include "src/core/lib/channel/context.h"
-#include "src/core/lib/gprpp/debug_location.h"
-#include "src/core/lib/gprpp/ref_counted.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
-#include "src/core/lib/gprpp/time.h"
+#include "src/core/util/debug_location.h"
+#include "src/core/util/ref_counted.h"
+#include "src/core/util/ref_counted_ptr.h"
+#include "src/core/util/time.h"
#include "src/core/lib/iomgr/call_combiner.h"
#include "src/core/lib/iomgr/closure.h"
#include "src/core/lib/iomgr/error.h"
diff --git a/src/core/client_channel/global_subchannel_pool.h b/src/core/client_channel/global_subchannel_pool.h
index bad648a595d..76ef31af385 100644
--- a/src/core/client_channel/global_subchannel_pool.h
+++ b/src/core/client_channel/global_subchannel_pool.h
@@ -26,8 +26,8 @@
#include "absl/base/thread_annotations.h"
#include "src/core/client_channel/subchannel_pool_interface.h"
-#include "src/core/lib/gprpp/ref_counted_ptr.h"
-#include "src/core/lib/gprpp/sync.h"
+#include "src/core/util/ref_counted_ptr.h"
+#include "src/core/util/sync.h"
namespace grpc_core {
diff --git a/src/core/client_channel/local_subchannel_pool.h b/src/core/client_channel/local_subchannel_pool.h
index 5e4cce51b28..a6e1933bbe0 100644
--- a/src/core/client_channel/local_subchannel_pool.h
+++ b/src/core/client_channel/local_subchannel_pool.h
@@ -24,7 +24,7 @@
#include