Searched refs:result (Results 1 - 25 of 1438) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraParameters.cpp473 String8 result; local
475 result.append(buffer);
481 result.append(buffer);
483 write(fd, result.string(), result.size());
H A DCameraParameters2.cpp368 String8 result;
370 result.append(buffer);
376 result.append(buffer);
378 write(fd, result.string(), result.size());
H A DICameraService.cpp118 status_t result = reply.readInt32();
123 return result;
135 status_t result = reply.readInt32();
146 return result;
156 status_t result = reply.readInt32();
164 return result;
335 status_t result = getCameraInfo(data.readInt32(), &cameraInfo); local
337 reply->writeInt32(result);
348 status_t result = getCameraCharacteristics(data.readInt32(), &info); local
350 reply->writeInt32(result);
360 status_t result = getCameraVendorTagDescriptor(d); local
[all...]
H A DIProCameraCallbacks.cpp70 void onResultReceived(int32_t requestId, camera_metadata* result) { argument
75 CameraMetadata::writeToParcel(data, result);
111 camera_metadata_t *result = NULL; local
112 CameraMetadata::readFromParcel(data, &result);
113 onResultReceived(requestId, result);
H A DProCamera.cpp93 void ProCamera::onResultReceived(int32_t requestId, camera_metadata* result) { argument
94 ALOGV("%s: requestId = %d, result = %p", __FUNCTION__, requestId, result);
102 CameraMetadata tmp(result);
112 result = tmp.release();
115 listener->onResultReceived(requestId, result);
117 free_camera_metadata(result);
/frameworks/av/camera/camera2/
H A DICameraDeviceCallbacks.cpp71 void onCaptureStarted(const CaptureResultExtras& result, int64_t timestamp) argument
77 result.writeToParcel(&data);
133 CaptureResultExtras result; local
135 result.readFromParcel(const_cast<Parcel*>(&data));
137 ALOGE("No CaptureResultExtras object is present in result!");
140 onCaptureStarted(result, timestamp);
151 ALOGW("No metadata object is present in result");
157 ALOGW("No capture result extras object is present in result");
H A DICameraDeviceUser.cpp242 status_t result = reply.readInt32(); local
252 return result;
263 status_t result = reply.readInt32(); local
274 return result;
/frameworks/av/cmds/screenrecord/
H A DEglWindow.cpp101 EGLBoolean result; local
110 result = eglInitialize(mEglDisplay, &majorVersion, &minorVersion);
111 if (result != EGL_TRUE) {
137 result = eglChooseConfig(mEglDisplay,
140 if (result != EGL_TRUE) {
/frameworks/av/cmds/stagefright/
H A Dmuxer.cpp301 int result = muxing(looper, argv[0], useAudio, useVideo, outputFileName, local
306 return result;
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp772 int result; local
783 result = reply.readInt32();
784 if (0 < result) {
785 reply.read(buffer, result);
787 return result;
921 bool result = canHandle(uniqueId, path, mimeType); local
923 reply->writeInt32(result);
1100 const int result = checkRightsStatus(uniqueId, path, action); local
1102 reply->writeInt32(result);
1156 bool result local
1485 ssize_t result = pread(uniqueId, &handle, buffer, numBytes, offset); local
[all...]
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp181 bool result = (EMPTY_STRING != plugInId) ? true : false; local
184 if (result) {
186 result = rDrmEngine.canHandle(uniqueId, path);
190 result = canHandle(uniqueId, path);
194 return result;
208 bool result = false; local
213 result = rDrmEngine.canHandle(uniqueId, path);
215 if (result) {
219 return result;
236 status_t result local
276 status_t result = DRM_ERROR_UNKNOWN; local
287 status_t result = DRM_ERROR_UNKNOWN; local
310 status_t result = DRM_ERROR_UNKNOWN; local
320 status_t result = DRM_ERROR_UNKNOWN; local
408 status_t result = DRM_ERROR_CANNOT_HANDLE; local
436 status_t result = DRM_ERROR_CANNOT_HANDLE; local
465 status_t result = DRM_ERROR_CANNOT_HANDLE; local
494 status_t result = DRM_ERROR_UNKNOWN; local
507 status_t result = DRM_ERROR_UNKNOWN; local
518 status_t result = DRM_ERROR_UNKNOWN; local
531 status_t result = DRM_ERROR_UNKNOWN; local
542 ssize_t result = DECRYPT_FILE_ERROR; local
[all...]
H A DDrmManagerService.cpp287 String8 result; local
293 result.append(buffer);
307 write(fd, result.string(), result.size());
/frameworks/av/drm/libdrmframework/plugins/common/util/src/
H A DMimeTypeUtil.cpp126 String8 result = mimeType; local
152 result = String8(pMimeItem->pMimeType);
159 result = String8(mime_type_unsupported);
162 pMimeType, result.string());
164 return result;
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp226 bool result = false; local
266 int result = RightsStatus::RIGHTS_INVALID; local
280 result = RightsStatus::RIGHTS_VALID;
285 result = RightsStatus::RIGHTS_INVALID;
290 return result;
383 status_t result = DRM_ERROR_UNKNOWN; local
390 result = DRM_NO_ERROR;
396 return result;
479 status_t result = DRM_ERROR_CANNOT_HANDLE; local
490 return result;
529 status_t result = DRM_ERROR_CANNOT_HANDLE; local
557 status_t result = DRM_ERROR_UNKNOWN; local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
H A DFwdLockGlue.c51 int result = TRUE; local
55 result = FALSE;
62 result = FALSE;
70 return result;
152 int result = FALSE; local
164 result = TRUE;
167 return result;
174 int result = FALSE; local
186 result = FwdLockGlue_ValidatePadding(pData, decryptedKeyLength);
190 return result;
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
H A DFwdLockFile.c172 int result; local
182 result = FALSE;
184 result = FwdLockGlue_DecryptKey(pSession->pEncryptedSessionKey,
186 if (result) {
188 result = FALSE;
195 result = FALSE;
205 if (!result) {
211 return result;
370 int result; local
373 result
411 int result; local
[all...]
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp696 String8 result("{ ");
698 result.appendFormat("0x%02x ", array[i]);
700 result += "}";
701 return result;
706 String8 result("{ ");
708 result.appendFormat("%s{name=%s, value=%s}", i > 0 ? ", " : "",
711 return result + " }";
747 String8 result("{ ");
749 result.appendFormat("0x%02x ", array[i]);
751 result
758 String8 result; local
[all...]
/frameworks/av/include/camera/
H A DIProCameraCallbacks.h55 camera_metadata* result) = 0;
H A DProCamera.h67 virtual void onResultReceived(int32_t frameId, camera_metadata* result) = 0;
74 // -- Use buf.timestamp to correlate with result's android.sensor.timestamp
225 // Blocks until a metadata result is available
256 camera_metadata* result);
/frameworks/av/include/media/
H A DJetPlayer.h110 int result; local
111 result = mPlayer->render();
/frameworks/av/include/media/stagefright/
H A DSurfaceMediaSource.h106 void dump(String8& result) const;
107 void dump(String8& result, const char* prefix, char* buffer,
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp143 status_t result = get(key, str8); local
145 if (result == NO_ERROR) {
150 result = INVALID_OPERATION;
153 return result;
159 status_t result = get(key, str8); local
161 if (result == NO_ERROR) {
166 result = INVALID_OPERATION;
169 return result;
H A DAudioRecord.cpp993 status_t result; local
1000 result = openRecord_l(position);
1001 if (result == NO_ERROR) {
1005 result = mAudioRecord->start(AudioSystem::SYNC_EVENT_SAME, 0);
1008 if (result != NO_ERROR) {
1009 ALOGW("restoreRecord_l() failed status %d", result);
1013 return result;
H A DAudioSystem.cpp201 String8 result = String8(""); local
202 if (af == 0) return result;
204 result = af->getParameters(ioHandle, keys);
205 return result;
418 uint32_t result = 0; local
419 if (af == 0) return result;
420 if (ioHandle == AUDIO_IO_HANDLE_NONE) return result;
422 result = af->getInputFramesLost(ioHandle);
423 return result;
H A DAudioTrack.cpp1462 status_t result = UNKNOWN_ERROR; local
1476 result = mAudioTrack->allocateTimedBuffer(size, buffer);
1477 if (result == DEAD_OBJECT) {
1485 result = restoreTrack_l("allocateTimedBuffer");
1487 if (result == NO_ERROR) {
1488 result = mAudioTrack->allocateTimedBuffer(size, buffer);
1492 return result;
1847 status_t result; local
1865 result = createTrack_l();
1871 if (result
2069 String8 result; local
[all...]

Completed in 218 milliseconds

1234567891011>>