HomeSort by relevance Sort by last modified time
    Searched refs:NewCallback (Results 1 - 23 of 23) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ia32/
PlDebugSupportIa32.c 94 value of NewCallback. If NewCallback is NULL, then uninstall is indicated.
95 If NewCallback is non-NULL, then install is indicated.
97 @param NewCallback If non-NULL, NewCallback specifies the new handler to register.
110 CALLBACK_FUNC NewCallback,
122 if (NewCallback != NULL) {
134 if (NewCallback == NULL) {
140 HookEntry (ExceptionType, NewCallback);
DebugSupport.h 248 value of NewCallback. If NewCallback is NULL, then uninstall is indicated.
249 If NewCallback is non-NULL, then install is indicated.
251 @param NewCallback If non-NULL, NewCallback specifies the new handler to register.
265 CALLBACK_FUNC NewCallback,
278 @param NewCallback A pointer to the new function to be registered.
284 IN CALLBACK_FUNC NewCallback
PlDebugSupport.c 75 @param NewCallback A pointer to the new function to be registered.
81 IN CALLBACK_FUNC NewCallback
107 // stores NewCallback
109 IdtEntryTable[ExceptionType].RegisteredCallback = NewCallback;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/X64/
PlDebugSupportX64.c 94 value of NewCallback. If NewCallback is NULL, then uninstall is indicated.
95 If NewCallback is non-NULL, then install is indicated.
97 @param NewCallback If non-NULL, NewCallback specifies the new handler to register.
111 CALLBACK_FUNC NewCallback,
123 if (NewCallback != NULL) {
135 if (NewCallback == NULL) {
141 HookEntry (ExceptionType, NewCallback);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ipf/
PlDebugSupport.c 176 @param NewCallback A pointer to the new function to be registered.
186 IN CALLBACK_FUNC NewCallback
202 if (NewCallback != NULL) {
230 if (NewCallback != NULL) {
234 ChainExternalInterrupt (NewCallback);
236 HookEntry (ExceptionType, NewBundles, NewCallback);
253 @param NewCallback A pointer to the new function to be hooked.
260 IN CALLBACK_FUNC NewCallback
291 IvtEntryTable[ExceptionType].RegisteredCallback = NewCallback;
327 @param NewCallback A pointer to the interrupt handle.
    [all...]
PlDebugSupport.h 248 @param NewCallback A pointer to the new function to be registered.
258 IN CALLBACK_FUNC NewCallback
267 @param NewCallback A pointer to the new function to be hooked.
274 IN CALLBACK_FUNC NewCallback
293 @param NewCallback A pointer to the interrupt handle.
298 IN CALLBACK_FUNC NewCallback
  /external/clang/test/Misc/
diagnostic-crash.cpp 28 NewCallback(T1* obj, R(T2::* member)(P1, P2, A1), const P1& p1, const P2& p2) {}
38 Closure* cb = NewCallback(this, &xxxxxxxxxxxxxxxxx::Bar, s, status); // expected-error{{cannot initialize}}
  /external/protobuf/src/google/protobuf/stubs/
common_unittest.cc 44 using internal::NewCallback;
204 Closure* closure = NewCallback(&SetA123Function);
211 Closure* closure = NewCallback(current_instance_,
219 Closure* closure = NewCallback(&SetAFunction, 456);
226 Closure* closure = NewCallback(current_instance_,
234 Closure* closure = NewCallback(&SetCFunction, string("test"));
241 Closure* closure = NewCallback(current_instance_,
250 Closure* closure = NewCallback(&SetABFunction, 789, cstr);
260 Closure* closure = NewCallback(current_instance_,
once_unittest.cc 46 using internal::NewCallback;
131 return new TestThread(internal::NewCallback(this, &OnceInitTest::InitOnce));
135 internal::NewCallback(this, &OnceInitTest::InitRecursiveOnce));
callback.h 18 // method with a particular set of parameters, use the NewCallback() function.
27 // Closure* callback = NewCallback(&FooDone, response);
44 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
50 // Currently NewCallback() supports binding zero, one, or two arguments.
52 // Callbacks created with NewCallback() automatically delete themselves when
59 // Note that NewCallback() is a bit touchy regarding argument types. Generally,
63 // NewCallback(&Foo, "foo"); // WON'T WORK: const char* != string
64 // NewCallback(&Foo, string("foo")); // WORKS
68 // NewCallback(&Foo, my_str); // WON'T WORK: Can't use referecnes.
385 inline Closure* NewCallback(void (*function)())
    [all...]
  /prebuilts/go/darwin-x86/misc/swig/callback/
callback_test.go 13 cb := NewCallback()
  /prebuilts/go/linux-x86/misc/swig/callback/
callback_test.go 13 cb := NewCallback()
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
callback.h 18 // method with a particular set of parameters, use the NewCallback() function.
27 // Closure* callback = NewCallback(&FooDone, response);
44 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
50 // Currently NewCallback() supports binding zero, one, or two arguments.
52 // Callbacks created with NewCallback() automatically delete themselves when
59 // Note that NewCallback() is a bit touchy regarding argument types. Generally,
63 // NewCallback(&Foo, "foo"); // WON'T WORK: const char* != string
64 // NewCallback(&Foo, string("foo")); // WORKS
68 // NewCallback(&Foo, my_str); // WON'T WORK: Can't use referecnes.
385 inline Closure* NewCallback(void (*function)())
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 798 // method with a particular set of parameters, use the NewCallback() function.
807 // Closure* callback = NewCallback(&FooDone, response);
824 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
830 // Currently NewCallback() supports binding zero, one, or two arguments.
832 // Callbacks created with NewCallback() automatically delete themselves when
839 // Note that NewCallback() is a bit touchy regarding argument types. Generally,
843 // NewCallback(&Foo, "foo"); // WON'T WORK: const char* != string
844 // NewCallback(&Foo, string("foo")); // WORKS
848 // NewCallback(&Foo, my_str); // WON'T WORK: Can't use referecnes.
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 798 // method with a particular set of parameters, use the NewCallback() function.
807 // Closure* callback = NewCallback(&FooDone, response);
824 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
830 // Currently NewCallback() supports binding zero, one, or two arguments.
832 // Callbacks created with NewCallback() automatically delete themselves when
839 // Note that NewCallback() is a bit touchy regarding argument types. Generally,
843 // NewCallback(&Foo, "foo"); // WON'T WORK: const char* != string
844 // NewCallback(&Foo, string("foo")); // WORKS
848 // NewCallback(&Foo, my_str); // WON'T WORK: Can't use referecnes.
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
common.h 798 // method with a particular set of parameters, use the NewCallback() function.
807 // Closure* callback = NewCallback(&FooDone, response);
824 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
830 // Currently NewCallback() supports binding zero, one, or two arguments.
832 // Callbacks created with NewCallback() automatically delete themselves when
839 // Note that NewCallback() is a bit touchy regarding argument types. Generally,
843 // NewCallback(&Foo, "foo"); // WON'T WORK: const char* != string
844 // NewCallback(&Foo, string("foo")); // WORKS
848 // NewCallback(&Foo, my_str); // WON'T WORK: Can't use referecnes.
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
common.h 798 // method with a particular set of parameters, use the NewCallback() function.
807 // Closure* callback = NewCallback(&FooDone, response);
824 // Closure* callback = NewCallback(this, &Handler::FooDone, response);
830 // Currently NewCallback() supports binding zero, one, or two arguments.
832 // Callbacks created with NewCallback() automatically delete themselves when
839 // Note that NewCallback() is a bit touchy regarding argument types. Generally,
843 // NewCallback(&Foo, "foo"); // WON'T WORK: const char* != string
844 // NewCallback(&Foo, string("foo")); // WORKS
848 // NewCallback(&Foo, my_str); // WON'T WORK: Can't use referecnes.
    [all...]
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 456 Closure *NewCallback(void (*f)()) {
466 Closure *NewCallback(void (*f)(P1), P1 p1) {
477 Closure *NewCallback(void (*f)(P1, P2), P1 p1, P2 p2) {
492 pool.Add(NewCallback(func_with_no_args));
493 pool.Add(NewCallback(func_with_one_arg, arg));
494 pool.Add(NewCallback(func_with_two_args, arg1, arg2));
tsan_unittest.cpp 393 pool.Add(NewCallback(Waker));
439 pool.Add(NewCallback(Waker));
521 pool.Add(NewCallback(Waker));
573 pool.Add(NewCallback(Waker));
1075 pool.Add(NewCallback(Waker));
1108 pool.Add(NewCallback(Waker));
1137 pool.Add(NewCallback(Waker));
1168 pool.Add(NewCallback(Waker));
1198 pool.Add(NewCallback(Waker));
1302 pool.Add(NewCallback(Waker))
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
syscall_windows_test.go 139 cb := syscall.NewCallback(func(hwnd syscall.Handle, lparam uintptr) uintptr {
166 c := syscall.NewCallback(callback)
406 stdcall := syscall.NewCallback(cb)
464 cb := syscall.NewCallback(func(hwnd syscall.Handle, msg uint32, wparam, lparam uintptr) (rc uintptr) {
605 cb := syscall.NewCallback(func(n uintptr) uintptr {
  /prebuilts/go/linux-x86/src/runtime/
syscall_windows_test.go 139 cb := syscall.NewCallback(func(hwnd syscall.Handle, lparam uintptr) uintptr {
166 c := syscall.NewCallback(callback)
406 stdcall := syscall.NewCallback(cb)
464 cb := syscall.NewCallback(func(hwnd syscall.Handle, msg uint32, wparam, lparam uintptr) (rc uintptr) {
605 cb := syscall.NewCallback(func(n uintptr) uintptr {
  /prebuilts/go/darwin-x86/src/syscall/
syscall_windows.go 126 func NewCallback(fn interface{}) uintptr {
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_windows.go 126 func NewCallback(fn interface{}) uintptr {
    [all...]

Completed in 2313 milliseconds