HomeSort by relevance Sort by last modified time
    Searched refs:NewCallback (Results 1 - 10 of 10) 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...]

Completed in 212 milliseconds