Home
last modified time | relevance | path

Searched defs:hook (Results 1 – 25 of 154) sorted by relevance

1234567

/external/cronet/base/allocator/partition_allocator/src/partition_alloc/
Dpartition_alloc_hooks.cc72 if (auto* hook = allocation_observer_hook_.load(std::memory_order_relaxed)) { in AllocationObserverHookIfEnabled() local
82 if (auto* hook = allocation_override_hook_.load(std::memory_order_relaxed)) { in AllocationOverrideHookIfEnabled() local
90 if (auto* hook = free_observer_hook_.load(std::memory_order_relaxed)) { in FreeObserverHookIfEnabled() local
96 if (auto* hook = free_override_hook_.load(std::memory_order_relaxed)) { in FreeOverrideHookIfEnabled() local
118 if (ReallocOverrideHook* hook = in ReallocOverrideHookIfEnabled() local
128 QuarantineOverrideHook* hook) { in SetQuarantineOverrideHook()
/external/python/cpython3/Lib/test/
Daudit-tests.py278 def hook(event, args): function
297 def hook(event, args): function
311 def hook(event, args): function
334 def hook(event, args): function
356 def hook(event, args): function
374 def hook(event, args): function
392 def hook(event, *args): function
414 def hook(event, args): function
425 def hook(event, args): function
446 hook = lambda *a: None function
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DRuntimeShutdownHookRegistrar.java21 @Override public void addShutdownHook(Thread hook) { in addShutdownHook()
25 @Override public boolean removeShutdownHook(Thread hook) { in removeShutdownHook()
DShutdownHookRegistrar.java26 void addShutdownHook(Thread hook); in addShutdownHook()
32 boolean removeShutdownHook(Thread hook); in removeShutdownHook()
/external/tensorflow/tensorflow/compiler/xla/service/
Dllvm_compiler.h42 void SetPreOptimizationHook(ModuleHook hook) { in SetPreOptimizationHook()
51 void SetPostOptimizationHook(ModuleHook hook) { in SetPostOptimizationHook()
/external/trace-cmd/lib/trace-cmd/
Dtrace-hooks.c17 struct hook_list *hook; in tracecmd_create_event_hook() local
159 struct hook_list *hook; in tracecmd_free_hooks() local
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DWorkerProcessTest.java59 @Override public void addShutdownHook(Thread hook) { in addShutdownHook()
62 @Override public boolean removeShutdownHook(Thread hook) { in removeShutdownHook()
121 Thread hook = Iterables.getOnlyElement(registrar.hooks); in shutdownHook_exitValueThrows() local
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/
Dtc_bpf.c25 static int test_tc_bpf_basic(const struct bpf_tc_hook *hook, int fd) in test_tc_bpf_basic()
68 static int test_tc_bpf_api(struct bpf_tc_hook *hook, int fd) in test_tc_bpf_api()
/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/abseil-cpp/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/tensorflow/third_party/absl/abseil-cpp/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/libtextclassifier/abseil-cpp/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/angle/third_party/abseil-cpp/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/cronet/third_party/abseil-cpp/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/openscreen/third_party/abseil/src/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/webrtc/third_party/abseil-cpp/absl/base/internal/
Datomic_hook_test.cc32 hook; in TEST() local
60 hook(TestHook); in TEST() local
/external/libbpf/src/
Dnetlink.c542 static int attach_point_to_config(struct bpf_tc_hook *hook, in attach_point_to_config()
582 static int tc_qdisc_modify(struct bpf_tc_hook *hook, int cmd, int flags) in tc_qdisc_modify()
606 static int tc_qdisc_create_excl(struct bpf_tc_hook *hook) in tc_qdisc_create_excl()
611 static int tc_qdisc_delete(struct bpf_tc_hook *hook) in tc_qdisc_delete()
616 int bpf_tc_hook_create(struct bpf_tc_hook *hook) in bpf_tc_hook_create()
632 int bpf_tc_hook_destroy(struct bpf_tc_hook *hook) in bpf_tc_hook_destroy()
718 int bpf_tc_attach(const struct bpf_tc_hook *hook, struct bpf_tc_opts *opts) in bpf_tc_attach()
792 static int __bpf_tc_detach(const struct bpf_tc_hook *hook, in __bpf_tc_detach()
853 int bpf_tc_detach(const struct bpf_tc_hook *hook, in bpf_tc_detach()
865 int bpf_tc_query(const struct bpf_tc_hook *hook, struct bpf_tc_opts *opts) in bpf_tc_query()
/external/tensorflow/tensorflow/core/util/
Dcommand_line_flags.cc31 const std::function<bool(string)>& hook, in ParseStringFlag()
44 const std::function<bool(int32_t)>& hook, in ParseInt32Flag()
65 const std::function<bool(int64_t)>& hook, in ParseInt64Flag()
86 const std::function<bool(bool)>& hook, in ParseBoolFlag()
113 const std::function<bool(float)>& hook, in ParseFloatFlag()
/external/aws-sdk-java-v2/core/sdk-core/src/test/java/software/amazon/awssdk/core/client/
DAsyncClientHandlerInterceptorExceptionTest.java81 private final Hook hook; field in AsyncClientHandlerInterceptorExceptionTest
92 public AsyncClientHandlerInterceptorExceptionTest(Hook hook) { in AsyncClientHandlerInterceptorExceptionTest()
/external/clang/test/Sema/
Dassign-null.c7 hookfunc hook; variable
/external/autotest/server/
Dsubcommand.py146 def register_fork_hook(cls, hook): argument
153 def register_join_hook(cls, hook): argument
/external/cronet/base/test/android/javatests/src/org/chromium/base/test/util/
DJniMocker.java29 public <T> void mock(JniStaticTestMocker<T> hook, T testInst) { in mock()
/external/python/cpython3/Lib/test/test_importlib/extension/
Dtest_path_hook.py14 def hook(self, entry): member in PathHookTests
/external/tensorflow/tensorflow/lite/tools/
Dcommand_line_flags.cc74 const std::function<void(const T&, int)>& hook) { in ParseFlag()
87 const std::function<void(const bool&, int)>& hook) { in ParseFlag()
99 const std::function<void(const std::string&, int)>& hook) { in ParseFlag()

1234567