Searched refs:handle (Results 226 - 250 of 490) sorted by relevance

1234567891011>>

/frameworks/av/services/audioflinger/
H A DAudioStreamOut.cpp119 audio_io_handle_t handle,
131 handle,
153 handle,
118 open( audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, const char *address) argument
/frameworks/base/libs/hwui/
H A DAnimatorManager.cpp61 void AnimatorManager::setAnimationHandle(AnimationHandle* handle) { argument
62 LOG_ALWAYS_FATAL_IF(mAnimationHandle && handle, "Already have an AnimationHandle!");
63 mAnimationHandle = handle;
65 "Lost animation handle on %p (%s) with outstanding animators!", &mParent,
72 ALOGW("Trying to start new animators on %p (%s) without an animation handle!", &mParent,
179 ALOGD("endAllActiveAnimators on %p (%s) with handle %p", &mParent, mParent.getName(),
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
H A DMtpManagerTest.java128 for (final int handle : mManager.getObjectHandles(
130 if (mManager.getObjectInfo(mUsbDevice.getDeviceId(), handle)
132 mManager.deleteDocument(mUsbDevice.getDeviceId(), handle);
/frameworks/base/services/core/jni/
H A Dcom_android_server_ArcVideoService.cpp43 mojo::ScopedHandle handle, const std::string& token) {
46 mojo::edk::PassWrappedPlatformHandle(handle.release().value(), &scoped_platform_handle);
53 base::ScopedFD fd(scoped_platform_handle.release().handle);
42 onCaptureResult(arc::Future<arc::MojoBootstrapResult>* future, uint32_t version, mojo::ScopedHandle handle, const std::string& token) argument
/frameworks/base/telephony/java/android/telephony/
H A DVisualVoicemailService.java37 * This service is implemented by dialer apps that wishes to handle OMTP or similar visual
159 final PhoneAccountHandle handle = msg.getData()
164 onCellServiceConnected(task, handle);
171 onSimRemoved(task, handle);
/frameworks/native/libs/vr/libpdx_uds/
H A Dchannel_event_set.cpp18 Status<void> SetupHandle(int fd, FileHandleType* handle, argument
21 handle->Reset(fd);
22 if (!*handle) {
23 ALOGE("SetupHandle: Failed to setup %s handle: %s", error_name,
/frameworks/rs/script_api/
H A Drs_object_types.spec25 // Opaque handle to a RenderScript object. Do not use this directly.
46 An opaque handle to a RenderScript element.
55 An opaque handle to a RenderScript type.
64 An opaque handle to a RenderScript allocation.
73 An opaque handle to a RenderScript sampler object.
82 An opaque handle to a RenderScript script object.
140 value: RS_TYPE_ELEMENT = 1000, "A handle to an Element."
141 value: RS_TYPE_TYPE = 1001, "A handle to a Type."
142 value: RS_TYPE_ALLOCATION = 1002, "A handle to an Allocation."
143 value: RS_TYPE_SAMPLER = 1003, "A handle t
[all...]
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterface.h217 audio_patch_handle_t *handle,
219 virtual status_t releaseAudioPatch(audio_patch_handle_t handle,
238 audio_patch_handle_t *handle,
240 virtual status_t stopAudioSource(audio_patch_handle_t handle) = 0;
342 audio_patch_handle_t *handle,
346 virtual status_t releaseAudioPatch(audio_patch_handle_t handle,
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioInputDescriptor.cpp85 dstConfig->ext.mix.handle = mIoHandle;
97 port->ext.mix.handle = mIoHandle;
179 void AudioInputDescriptor::setPatchHandle(audio_patch_handle_t handle) argument
181 mPatchHandle = handle;
227 "%s openInput returned input handle %d for device %08x",
355 audio_devices_t AudioInputCollection::getSupportedDevices(audio_io_handle_t handle) const
357 sp<AudioInputDescriptor> inputDesc = valueFor(handle);
/frameworks/av/camera/
H A DCamera.cpp235 void Camera::releaseRecordingFrameHandle(native_handle_t* handle) argument
240 c->releaseRecordingFrameHandle(handle);
400 void Camera::recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle) argument
411 proxylistener->recordingFrameHandleCallbackTimestamp(timestamp, handle);
422 listener->postRecordingFrameHandleTimestamp(timestamp, handle);
425 releaseRecordingFrameHandle(handle);
485 void Camera::RecordingProxy::releaseRecordingFrameHandle(native_handle_t* handle) { argument
487 mCamera->releaseRecordingFrameHandle(handle);
/frameworks/av/media/libaudiohal/2.0/
H A DDeviceHalHidl.h72 audio_io_handle_t handle,
82 audio_io_handle_t handle,
H A DDeviceHalLocal.h65 audio_io_handle_t handle,
75 audio_io_handle_t handle,
/frameworks/av/media/libaudiohal/4.0/
H A DDeviceHalHidl.h73 audio_io_handle_t handle,
83 audio_io_handle_t handle,
H A DDeviceHalLocal.h66 audio_io_handle_t handle,
76 audio_io_handle_t handle,
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioInputDescriptor.h45 audio_io_handle_t mIoHandle; // input handle
74 void setPatchHandle(audio_patch_handle_t handle);
118 * return io handle of active input or 0 if no input is active
124 audio_devices_t getSupportedDevices(audio_io_handle_t handle) const;
/frameworks/base/core/java/android/hardware/location/
H A DNanoAppInstanceInfo.java59 public NanoAppInstanceInfo(int handle, long appId, int appVersion, int contextHubId) { argument
60 mHandle = handle;
159 * get a handle to the nano app instance
161 * @return int - handle to this instance
224 String retVal = "handle : " + mHandle;
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java174 // TODO: handle existing apps installed in ASEC; currently assumes
387 NativeLibraryHelper.Handle handle = null;
389 handle = fd != null ? NativeLibraryHelper.Handle.createFd(pkg, fd)
391 return calculateInstalledSize(pkg, handle, abiOverride);
393 IoUtils.closeQuietly(handle);
399 NativeLibraryHelper.Handle handle, String abiOverride) throws IOException {
400 return calculateInstalledSize(pkg, handle, abiOverride);
403 public static long calculateInstalledSize(PackageLite pkg, NativeLibraryHelper.Handle handle, argument
417 sizeBytes += NativeLibraryHelper.sumNativeBinariesWithOverride(handle, abiOverride);
398 calculateInstalledSize(PackageLite pkg, boolean isForwardLocked, NativeLibraryHelper.Handle handle, String abiOverride) argument
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
H A DTransactionCompat.java92 IBinder handle, long frameNumber) {
93 mTransaction.deferTransactionUntil(surfaceControl.mSurfaceControl, handle, frameNumber);
91 deferTransactionUntil(SurfaceControlCompat surfaceControl, IBinder handle, long frameNumber) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
H A DMockSyntheticPasswordManager.java91 protected long sidFromPasswordHandle(byte[] handle) { argument
92 return new FakeGateKeeperService.VerifyHandle(handle).sid;
/frameworks/native/services/sensorservice/
H A DRotationVectorSensor.cpp36 .handle = getSensorToken(),
69 status_t RotationVectorSensor::setDelay(void* ident, int /*handle*/, int64_t ns) {
122 .handle = '_gbs',
154 status_t GyroDriftSensor::setDelay(void* ident, int /*handle*/, int64_t ns) {
/frameworks/av/camera/include/camera/
H A DCamera.h46 virtual void postRecordingFrameHandleTimestamp(nsecs_t timestamp, native_handle_t* handle) = 0;
121 // release a recording frame handle
122 void releaseRecordingFrameHandle(native_handle_t *handle);
175 virtual void recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle);
190 virtual void releaseRecordingFrameHandle(native_handle_t* handle);
/frameworks/av/camera/include/camera/android/hardware/
H A DICameraClient.h40 // Invoked to send a recording frame handle with a timestamp. Call
41 // ICamera::releaseRecordingFrameHandle to release the frame handle.
43 native_handle_t* handle) = 0;
/frameworks/av/include/camera/
H A DCamera.h46 virtual void postRecordingFrameHandleTimestamp(nsecs_t timestamp, native_handle_t* handle) = 0;
121 // release a recording frame handle
122 void releaseRecordingFrameHandle(native_handle_t *handle);
175 virtual void recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle);
190 virtual void releaseRecordingFrameHandle(native_handle_t* handle);
/frameworks/av/include/camera/android/hardware/
H A DICameraClient.h40 // Invoked to send a recording frame handle with a timestamp. Call
41 // ICamera::releaseRecordingFrameHandle to release the frame handle.
43 native_handle_t* handle) = 0;
/frameworks/av/include/media/
H A DIAudioPolicyService.h134 audio_patch_handle_t *handle) = 0;
137 virtual status_t releaseAudioPatch(audio_patch_handle_t handle) = 0;
162 audio_patch_handle_t *handle) = 0;
163 virtual status_t stopAudioSource(audio_patch_handle_t handle) = 0;

Completed in 3752 milliseconds

1234567891011>>