/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/ |
CameraSessionUtils.java | 68 * @param handler the {@link Handler} to use for callbacks. 110 * @param handler the {@link Handler} to use for callbacks. 158 * This will verify that the correct session callbacks are called if a mocked listener is 163 * @param listener a {@link SessionListener} to use for callbacks. 166 * @param handler the {@link Handler} to call callbacks on. 198 * This will verify that the correct capture callbacks are called if a mocked listener is 203 * @param listener a {@link CaptureCallback} to use for callbacks. 206 * @param handler the {@link Handler} to call callbacks on.
|
/external/elfutils/src/tests/ |
dwfl-bug-getmodules.c | 23 static const Dwfl_Callbacks callbacks = variable 47 Dwfl *dwfl = dwfl_begin (&callbacks);
|
/external/libselinux/src/ |
callbacks.c | 2 * User-supplied callbacks and default implementations. 11 #include "callbacks.h"
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
CallbackFilter.java | 23 * callback. The type of the callbacks chosen for each method affects 33 * @return the index into the array of callbacks (as specified by {@link Enhancer#setCallbacks}) to use for the method,
|
/external/selinux/libselinux/src/ |
callbacks.c | 2 * User-supplied callbacks and default implementations. 11 #include "callbacks.h"
|
/external/v8/src/ |
arguments.h | 184 * The following Call functions wrap the calling of all callbacks to handle 185 * calling either the old or the new style callbacks depending on which one 187 * For old callbacks which return an empty handle, the ReturnValue is checked 189 * New style callbacks always use the return value. 257 * The following Call function wraps the calling of all callbacks to handle 258 * calling either the old or the new style callbacks depending on which one 260 * For old callbacks which return an empty handle, the ReturnValue is checked 262 * New style callbacks always use the return value.
|
/external/v8/test/webkit/fast/js/ |
Promise-then-without-callbacks.js | 26 description('Promise.prototype.then should work without callbacks.'); 30 // then without callbacks
|
/frameworks/av/media/libstagefright/codecs/avc/enc/ |
SoftAVCEncoder.h | 33 const OMX_CALLBACKTYPE *callbacks, 50 // Callbacks required by PV's encoder
|
/frameworks/av/media/libstagefright/codecs/flac/enc/ |
SoftFlacEncoder.h | 33 const OMX_CALLBACKTYPE *callbacks, 77 // FLAC encoder callbacks
|
/frameworks/base/core/java/android/bluetooth/le/ |
ScanCallback.java | 22 * Bluetooth LE scan callbacks. Scan results are reported using these callbacks.
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
RecentsAppWidgetHost.java | 27 /* Callbacks to notify when an app package changes */ 52 // Ensure that we release any references to the callbacks
|
/frameworks/base/services/core/java/com/android/server/pm/ |
PreferredComponent.java | 53 private final Callbacks mCallbacks; 55 public interface Callbacks { 60 public PreferredComponent(Callbacks callbacks, int match, ComponentName[] set, 62 mCallbacks = callbacks; 95 public PreferredComponent(Callbacks callbacks, XmlPullParser parser) 97 mCallbacks = callbacks;
|
/frameworks/support/customtabs/src/android/support/customtabs/ |
CustomTabsCallback.java | 55 * Unsupported callbacks that may be provided by the implementation. 62 * <p> This can be used by implementations to add extra callbacks, for testing or experimental
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/ |
CollapsibleActionView.java | 22 * When a {@link android.view.View} implements this interface it will receive callbacks when expanded or 23 * collapsed as an action view alongside the optional, app-specified callbacks to {@link
|
/hardware/libhardware/include/hardware/ |
bt_pan.h | 55 * Initialize the pan interface and register the btpan callbacks 57 bt_status_t (*init)(const btpan_callbacks_t* callbacks);
|
/packages/apps/Camera2/src/com/android/camera/async/ |
Updatable.java | 31 * <li>Callbacks: {@link ConcurrentState}</li> 45 * invoke callbacks which may violate the above constraints)</li>
|
/system/bt/btif/src/ |
btif_gatt.c | 63 static bt_status_t btif_gatt_init( const btgatt_callbacks_t* callbacks ) 65 bt_gatt_callbacks = callbacks;
|
/external/libvorbis/doc/vorbisfile/ |
ov_callbacks.html | 27 href="ov_open.html">ov_open()</a> calls internally provide default callbacks for 62 <h3>Predefined callbacks</h3> 68 These callbacks provide the same behavior as used internally by <a 83 A set of callbacks that set <tt>seek_func</tt> and <tt>tell_func</tt> 99 See <a href="callbacks.html">the callbacks and non-stdio I/O document</a> for more
|
/frameworks/av/services/camera/libcameraservice/ |
CameraFlashlight.h | 41 // callbacks.torch_mode_status_change() should be invoked. 56 const camera_module_callbacks_t& callbacks); 78 // device. CameraFlashlight may invoke callbacks for torch mode 108 const camera_module_callbacks_t& callbacks); 127 const camera_module_callbacks_t& callbacks); 181 const camera_module_callbacks_t& callbacks);
|
/frameworks/base/core/java/android/app/backup/ |
IRestoreSession.aidl | 46 * progress callbacks if this method returned zero. 50 * progress callbacks during the restore operation. 62 * progress callbacks if this method returned zero. 66 * progress callbacks during the restore operation. 81 * progress callbacks if this method returned zero. 86 * progress callbacks during the restore operation.
|
/hardware/libhardware/modules/camera/ |
CameraHAL.cpp | 82 int CameraHAL::setCallbacks(const camera_module_callbacks_t *callbacks) 84 ALOGV("%s : callbacks=%p", __func__, callbacks); 85 mCallbacks = callbacks; 122 static int set_callbacks(const camera_module_callbacks_t *callbacks) 124 return gCameraHAL.setCallbacks(callbacks);
|
/system/bt/hci/src/ |
vendor.c | 38 static vendor_cb callbacks[LAST_VENDOR_OPCODE_VALUE + 1]; variable 104 callbacks[opcode] = callback; 113 vendor_cb callback = callbacks[VENDOR_CONFIGURE_FIRMWARE]; 123 vendor_cb callback = callbacks[VENDOR_CONFIGURE_SCO]; 132 vendor_cb callback = callbacks[VENDOR_SET_LPM_MODE]; 184 vendor_cb callback = callbacks[VENDOR_DO_EPILOG];
|
/external/clang/unittests/Lex/ |
PPCallbacksTest.cpp | 54 // Stub to collect data from InclusionDirective callbacks. 84 // Stub to collect data from PragmaOpenCLExtension callbacks. 174 InclusionDirectiveCallbacks* Callbacks = new InclusionDirectiveCallbacks; 175 PP.addPPCallbacks(std::unique_ptr<PPCallbacks>(Callbacks)); 187 // Callbacks have been executed at this point -- return filename range. 188 return Callbacks->FilenameRange; 220 PragmaOpenCLExtensionCallbacks* Callbacks = new PragmaOpenCLExtensionCallbacks; 221 PP.addPPCallbacks(std::unique_ptr<PPCallbacks>(Callbacks)); 233 Callbacks->Name, 234 Callbacks->Stat [all...] |
/external/freetype/src/cff/ |
cf2ft.c | 120 cf2_builder_moveTo( CF2_OutlineCallbacks callbacks, 124 CF2_Outline outline = (CF2_Outline)callbacks; 142 cf2_builder_lineTo( CF2_OutlineCallbacks callbacks, 148 CF2_Outline outline = (CF2_Outline)callbacks; 166 if ( !*callbacks->error ) 167 *callbacks->error = error; 178 if ( !*callbacks->error ) 179 *callbacks->error = error; 186 cf2_builder_cubeTo( CF2_OutlineCallbacks callbacks, 192 CF2_Outline outline = (CF2_Outline)callbacks; [all...] |
/external/pdfium/third_party/freetype/src/cff/ |
cf2ft.c | 120 cf2_builder_moveTo( CF2_OutlineCallbacks callbacks, 124 CF2_Outline outline = (CF2_Outline)callbacks; 142 cf2_builder_lineTo( CF2_OutlineCallbacks callbacks, 148 CF2_Outline outline = (CF2_Outline)callbacks; 166 if ( !*callbacks->error ) 167 *callbacks->error = error; 178 if ( !*callbacks->error ) 179 *callbacks->error = error; 186 cf2_builder_cubeTo( CF2_OutlineCallbacks callbacks, 192 CF2_Outline outline = (CF2_Outline)callbacks; [all...] |