Searched refs:handle (Results 176 - 200 of 484) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/
H A DFrameRenderTracker.cpp60 if (it->mGraphicBuffer->handle == buf->handle) {
177 ALOGI(" RENDERED: handle: %p, media time: %lldus, index: %zd, render time: %lldns",
178 it->mGraphicBuffer == NULL ? NULL : it->mGraphicBuffer->handle,
181 ALOGI(" QUEUED: handle: %p, media time: %lldus, fence: %s",
182 it->mGraphicBuffer->handle, (long long)it->mMediaTimeUs,
185 ALOGI(" DEQUEUED: handle: %p, media time: %lldus, index: %zd",
186 it->mGraphicBuffer->handle, (long long)it->mMediaTimeUs, it->mIndex);
/frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
H A DAAC_E_SAMPLES.c153 void *handle; local
191 handle = dlopen("libstagefright.so", RTLD_NOW);
192 if(handle == 0)
198 pfunc = dlsym(handle, "voGetAACEncAPI");
279 dlclose(handle);
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHalHidl.cpp72 sound_model_handle_t *handle)
74 if (handle == NULL) {
130 *handle = (sound_model_handle_t)modelId;
131 sp<SoundModel> model = new SoundModel(*handle, callback, cookie, halHandle);
132 mSoundModels.add(*handle, model);
142 int SoundTriggerHalHidl::unloadSoundModel(sound_model_handle_t handle) argument
149 sp<SoundModel> model = removeModel(handle);
151 ALOGE("unloadSoundModel model not found for handle %u", handle);
169 int SoundTriggerHalHidl::startRecognition(sound_model_handle_t handle, argument
69 loadSoundModel(struct sound_trigger_sound_model *sound_model, sound_model_callback_t callback, void *cookie, sound_model_handle_t *handle) argument
206 stopRecognition(sound_model_handle_t handle) argument
278 getModel(sound_model_handle_t handle) argument
284 removeModel(sound_model_handle_t handle) argument
[all...]
/frameworks/av/soundtrigger/
H A DISoundTriggerHwService.cpp80 virtual status_t attach(const sound_trigger_module_handle_t handle, argument
86 data.write(&handle, sizeof(sound_trigger_module_handle_t));
154 sound_trigger_module_handle_t handle; local
155 data.read(&handle, sizeof(sound_trigger_module_handle_t));
159 status_t status = attach(handle, client, module);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServer.java107 if (DBG) Log.d(TAG, "onServiceAdded() - handle=" + service.getInstanceId()
148 int offset, boolean isLong, int handle) {
149 if (VDBG) Log.d(TAG, "onCharacteristicReadRequest() - handle=" + handle);
152 BluetoothGattCharacteristic characteristic = getCharacteristicByHandle(handle);
154 Log.w(TAG, "onCharacteristicReadRequest() no char for handle " + handle);
171 int offset, boolean isLong, int handle) {
172 if (VDBG) Log.d(TAG, "onCharacteristicReadRequest() - handle=" + handle);
374 getCharacteristicByHandle(int handle) argument
388 getDescriptorByHandle(int handle) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_EGLExt.cpp114 toEGLHandle(JNIEnv *_env, jclass cls, jmethodID con, void * handle) { argument
116 (EGLContext)handle == EGL_NO_CONTEXT) {
121 (EGLDisplay)handle == EGL_NO_DISPLAY) {
126 (EGLSurface)handle == EGL_NO_SURFACE) {
130 return _env->NewObject(cls, con, reinterpret_cast<jlong>(handle));
/frameworks/native/opengl/tools/glgen/stubs/egl/
H A DEGLExtcHeader.cpp114 toEGLHandle(JNIEnv *_env, jclass cls, jmethodID con, void * handle) { argument
116 (EGLContext)handle == EGL_NO_CONTEXT) {
121 (EGLDisplay)handle == EGL_NO_DISPLAY) {
126 (EGLSurface)handle == EGL_NO_SURFACE) {
130 return _env->NewObject(cls, con, reinterpret_cast<jlong>(handle));
/frameworks/av/media/mtp/
H A DMtpDevice.cpp428 MtpObjectInfo* MtpDevice::getObjectInfo(MtpObjectHandle handle) { argument
434 mRequest.setParameter(1, handle);
441 MtpObjectInfo* info = new MtpObjectInfo(handle);
450 void* MtpDevice::getThumbnail(MtpObjectHandle handle, int& outLength) { argument
454 mRequest.setParameter(1, handle);
519 bool MtpDevice::sendObject(MtpObjectHandle handle, int size, int srcFD) { argument
523 mLastSendObjectInfoObjectHandle != handle) {
539 bool MtpDevice::deleteObject(MtpObjectHandle handle) { argument
543 mRequest.setParameter(1, handle);
552 MtpObjectHandle MtpDevice::getParent(MtpObjectHandle handle) { argument
563 getStorageID(MtpObjectHandle handle) argument
632 getObjectPropValue(MtpObjectHandle handle, MtpProperty* property) argument
651 readObject(MtpObjectHandle handle, ReadObjectCallback callback, uint32_t expectedLength, void* clientData) argument
659 readObject(MtpObjectHandle handle, const char* destPath, int group, int perm) argument
678 readObject(MtpObjectHandle handle, int fd) argument
683 readObjectInternal(MtpObjectHandle handle, ReadObjectCallback callback, const uint32_t* expectedLength, void* clientData) argument
803 readPartialObject(MtpObjectHandle handle, uint32_t offset, uint32_t size, uint32_t *writtenSize, ReadObjectCallback callback, void* clientData) argument
825 readPartialObject64(MtpObjectHandle handle, uint64_t offset, uint32_t size, uint32_t *writtenSize, ReadObjectCallback callback, void* clientData) argument
927 reapEventRequest(int handle, uint32_t (*parameters)[3]) argument
942 discardEventRequest(int handle) argument
[all...]
H A DMtpObjectInfo.h50 explicit MtpObjectInfo(MtpObjectHandle handle);
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java385 private void endSendObject(String path, int handle, int format, boolean succeeded) { argument
387 // handle abstract playlists separately
406 values.put(MediaColumns.MEDIA_SCANNER_NEW_OBJECT_ID, handle);
414 mMediaScanner.scanMtpFile(path, handle, format);
417 deleteFile(handle);
721 private MtpPropertyList getObjectPropertyList(int handle, int format, int property, argument
730 if (format == 0 && handle != 0 && handle != 0xffffffff) {
732 format = getObjectFormat(handle);
751 return propertyGroup.getPropertyList(handle, forma
754 renameFile(int handle, String newName) argument
841 setObjectProperty(int handle, int property, long intValue, String stringValue) argument
902 getObjectInfo(int handle, int[] outStorageFormatParent, char[] outName, long[] outCreatedModified) argument
942 getObjectFilePath(int handle, char[] outFilePath, long[] outFileLengthFormat) argument
977 getObjectFormat(int handle) argument
997 deleteFile(int handle) argument
1059 getObjectReferences(int handle) argument
1086 setObjectReferences(int handle, int[] references) argument
[all...]
/frameworks/native/libs/vr/libpdx_uds/
H A Dchannel_event_set.cpp79 Status<void> ChannelEventSet::SetupHandle(int fd, LocalHandle* handle, argument
82 handle->Reset(fd);
83 if (!*handle) {
84 ALOGE("ChannelEventSet::SetupHandle: Failed to setup %s handle: %s",
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustAgentWrapper.java82 private static final String DATA_HANDLE = "handle";
206 long handle = mTrustManagerService.addEscrowToken(eToken, userId);
211 eToken, handle, UserHandle.of(userId));
219 mTrustManagerService.removeEscrowToken(handle, userId);
224 long handle = msg.getData().getLong(DATA_HANDLE);
226 boolean active = mTrustManagerService.isEscrowTokenActive(handle, userId);
229 mTrustAgentService.onTokenStateReceived(handle,
239 long handle = msg.getData().getLong(DATA_HANDLE);
241 boolean success = mTrustManagerService.removeEscrowToken(handle, userId);
244 mTrustAgentService.onEscrowTokenRemoved(handle, succes
[all...]
/frameworks/av/camera/include/camera/
H A DICameraRecordingProxy.h88 virtual void releaseRecordingFrameHandle(native_handle_t *handle) = 0;
H A DICameraRecordingProxyListener.h41 native_handle_t* handle) = 0;
/frameworks/av/include/camera/
H A DICameraRecordingProxy.h88 virtual void releaseRecordingFrameHandle(native_handle_t *handle) = 0;
H A DICameraRecordingProxyListener.h41 native_handle_t* handle) = 0;
/frameworks/av/include/radio/
H A DIRadioService.h39 virtual status_t attach(const radio_handle_t handle,
/frameworks/av/include/soundtrigger/
H A DISoundTriggerHwService.h39 virtual status_t attach(const sound_trigger_module_handle_t handle,
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h50 void *handle; member in struct:lib_entry_s
/frameworks/av/media/libstagefright/codecs/gsm/dec/
H A DSoftGSM.h60 static int DecodeGSM(gsm handle, int16_t *out, uint8_t *in, size_t inSize);
/frameworks/av/radio/
H A DIRadioService.cpp79 virtual status_t attach(radio_handle_t handle, argument
87 data.writeInt32(handle);
154 radio_handle_t handle = data.readInt32(); local
166 status_t status = attach(handle, client, configPtr, withAudio, radio);
/frameworks/av/services/oboeservice/
H A DAAudioService.cpp43 static_assert(AAUDIO_HANDLE_TYPE_STREAM < HANDLE_TRACKER_MAX_TYPES, "Too many handle types.");
91 aaudio_handle_t handle = mHandleTracker.put(AAUDIO_HANDLE_TYPE_STREAM, serviceStream);
92 ALOGV("AAudioService::openStream(): handle = 0x%08X", handle);
93 if (handle < 0) {
94 ALOGE("AAudioService::openStream(): handle table full");
97 return handle;
125 ALOGE("AAudioService::getStreamDescription(), illegal stream handle = 0x%0x", streamHandle);
136 ALOGE("AAudioService::startStream(), illegal stream handle = 0x%0x", streamHandle);
146 ALOGE("AAudioService::pauseStream(), illegal stream handle
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DILockSettings.aidl50 boolean removeEscrowToken(long handle, int userId);
51 boolean isEscrowTokenActive(long handle, int userId);
/frameworks/base/libs/hwui/
H A DAnimatorManager.h44 void setAnimationHandle(AnimationHandle* handle);
/frameworks/native/libs/sensor/
H A DSensorEventQueue.cpp137 status_t SensorEventQueue::enableSensor(int32_t handle, int32_t samplingPeriodUs, argument
139 return mSensorEventConnection->enableDisable(handle, true, us2ns(samplingPeriodUs),
147 status_t SensorEventQueue::disableSensor(int32_t handle) const {
148 return mSensorEventConnection->enableDisable(handle, false, 0, 0, false);

Completed in 291 milliseconds

1234567891011>>