HomeSort by relevance Sort by last modified time
    Searched defs:callback (Results 1 - 25 of 1863) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
mutation_inside_cyclegc.py 4 # Moreover, it can invoke arbitrary Python code via a weakref callback.
18 def callback(x): function
28 keepalive.append(weakref.ref(a, callback))
  /external/google-breakpad/src/processor/testdata/
linux_test_app.cc 54 static bool callback(const char *dump_path, const char *id, function in namespace:__anon20913
75 google_breakpad::ExceptionHandler eh(".", NULL, callback, NULL, true);
test_app.cc 41 static bool callback(const wchar_t *dump_path, const wchar_t *id, function in namespace:__anon20914
64 L".", NULL, callback, NULL,
  /external/python/cpython2/Demo/tkinter/matt/
subclass-existing-widgets.py 7 def callback(self): member in class:New_Button
21 f.hi_there.config(command=f.hi_there.callback)
  /external/python/cpython2/Lib/test/crashers/
mutation_inside_cyclegc.py 4 # Moreover, it can invoke arbitrary Python code via a weakref callback.
18 def callback(x): function
28 keepalive.append(weakref.ref(a, callback))
  /external/python/cpython3/Lib/test/crashers/
mutation_inside_cyclegc.py 4 # Moreover, it can invoke arbitrary Python code via a weakref callback.
18 def callback(x): function
28 keepalive.append(weakref.ref(a, callback))
  /libcore/ojluni/src/main/java/javax/security/auth/callback/
package-info.java 35 package javax.security.auth.callback;
UnsupportedCallbackException.java 26 package javax.security.auth.callback;
30 * recognize a particular {@code Callback}.
40 private Callback callback; field in class:UnsupportedCallbackException
48 * @param callback the unrecognized {@code Callback}.
50 public UnsupportedCallbackException(Callback callback) {
52 this.callback = callback;
    [all...]
Callback.java 27 package javax.security.auth.callback;
36 * <p> {@code Callback} implementations do not retrieve or
38 * {@code Callback} implementations simply provide the means
43 * @see javax.security.auth.callback.CallbackHandler
44 * @see javax.security.auth.callback.ChoiceCallback
45 * @see javax.security.auth.callback.ConfirmationCallback
46 * @see javax.security.auth.callback.LanguageCallback
47 * @see javax.security.auth.callback.NameCallback
48 * @see javax.security.auth.callback.PasswordCallback
49 * @see javax.security.auth.callback.TextInputCallbac
    [all...]
  /prebuilts/go/darwin-x86/misc/swig/callback/
callback.go 5 package callback package
callback_test.go 5 package callback package
17 if s != "Callback::run" {
29 t.Errorf("unexpected string from Call with callback: %q", s)
  /prebuilts/go/linux-x86/misc/swig/callback/
callback.go 5 package callback package
callback_test.go 5 package callback package
17 if s != "Callback::run" {
29 t.Errorf("unexpected string from Call with callback: %q", s)
  /frameworks/layoutlib/bridge/src/android/os/
Handler_Delegate.java 36 // get the callback
37 IHandlerCallback callback = sCallbacks.get(); local
38 if (callback != null) {
39 callback.sendMessageAtTime(handler, msg, uptimeMillis);
53 public static void setCallback(IHandlerCallback callback) {
54 sCallbacks.set(callback);
  /external/libxml2/python/tests/
ctxterror.py 17 def callback(arg,msg,severity,reserved): function
24 parserCtxt.setErrorHandler(callback, "-->")
25 if parserCtxt.getErrorHandler() != (callback,"-->"):
42 parserCtxt.setErrorHandler(callback, "-->")
error.py 14 def callback(ctx, str): function
20 libxml2.registerErrorHandler(callback, "-->")
  /cts/tests/tests/location/src/android/location/cts/
GnssStatusCallbackTest.java 22 private static class MockCallback extends GnssStatus.Callback {
26 GnssStatus.Callback callback = new MockCallback(); local
27 callback.onStarted();
28 callback.onFirstFix(10);
29 callback.onSatelliteStatusChanged(null);
30 callback.onStopped();
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
Animatable2_AnimationCallbackTest.java 32 AnimationCallback callback = new AnimationCallback() {}; local
33 callback.onAnimationStart(null);
34 callback.onAnimationEnd(null);
  /external/clang/test/Sema/
callingconv-cast.c 19 void take_callback(callback_t callback);
23 void take_opaque_fn(void (*callback)(int));
30 callback_t callback = (callback_t)mismatched; // warns local
31 (void)callback;
34 callback = (callback_t)&mismatched; // warns
37 callback = (callback_t)!mismatched;
40 callback = (callback_t)&mismatched_before_winapi; // warns
  /external/compiler-rt/test/tsan/
dl_iterate_phdr.cc 21 static int callback(struct dl_phdr_info *info, size_t size, void *data) { function
30 dl_iterate_phdr(callback, 0);
  /external/libbrillo/brillo/dbus/
dbus_param_reader_unittest.cc 23 auto callback = [&called]() { called = true; }; local
24 EXPECT_TRUE(DBusParamReader<false>::Invoke(callback, &reader, nullptr));
34 auto callback = [&called](int param1) { local
39 (DBusParamReader<false, int>::Invoke(callback, &reader, nullptr)));
52 auto callback = [&called](bool p1, int p2, const VariantDictionary& p3) { local
60 callback, &reader, nullptr)));
73 auto callback = [&called](bool param1, int param2) { local
80 (DBusParamReader<false, bool, int>::Invoke(callback, &reader, &error)));
93 auto callback = [&called](bool param1, int param2) { local
100 (DBusParamReader<false, bool, int>::Invoke(callback, &reader, &error)))
114 auto callback = [&called](bool param1, double param2) { local
132 auto callback = [&called](int* param1) { local
147 auto callback = [&called](int param1, double* param2) { local
163 auto callback = [&called](double* param1, int param2) { local
182 auto callback = [&called](bool p1, local
216 auto callback = [&called](bool param1, int param2, int* param3) { local
237 auto callback = [&called](bool param1, int param2, int* param3) { local
    [all...]
  /external/libbrillo/brillo/
process_reaper.h 12 #include <base/callback.h>
22 // The callback called when a child exits.
23 using ChildCallback = base::Callback<void(const siginfo_t&)>;
39 // Watch for the child process |pid| to finish and call |callback| when the
41 // |callback| receives the exit status and exit code of the terminated process
45 const ChildCallback& callback);
61 ChildCallback callback; member in struct:brillo::final::WatchedProcess
  /external/libese/apps/boot/card/src/com/android/verifiedboot/globalstate/callback/
CallbackInterface.java 1 package com.android.verifiedboot.globalstate.callback;
  /external/libmicrohttpd/src/examples/
chunked_example.c 30 callback (void *cls, function
63 &callback,
  /external/libunwind/src/
os-qnx.c 31 static int callback(const struct dl_phdr_info *info, size_t size, void *data) function
90 if (dl_iterate_phdr (callback, &map_list) != 0)

Completed in 2923 milliseconds

1 2 3 4 5 6 7 8 91011>>