Searched defs:partial (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DUserInfo.java91 public boolean partial; field in class:UserInfo
149 partial = orig.partial;
175 dest.writeInt(partial ? 1 : 0);
198 partial = source.readInt() != 0;
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h387 const CameraService::DescriptorPtr& partial);
480 std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>* partial);
542 * values set in the partial descriptor passed in to construct the actual client descriptor.
822 std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>> partial; local
825 /*out*/&partial)) != NO_ERROR) {
892 finishConnectLocked(client, partial);
H A DCameraService.cpp944 std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>* partial) {
1122 *partial = clientDescriptor;
2182 const sp<BasicClient>& value, const CameraService::DescriptorPtr& partial) {
2183 return makeClientDescriptor(partial->getKey(), value, partial->getCost(),
2184 partial->getConflicting(), partial->getPriority(), partial->getOwnerId());
940 handleEvictionsLocked(const String8& cameraId, int clientPid, apiLevel effectiveApiLevel, const sp<IBinder>& remoteCallback, const String8& packageName, sp<BasicClient>* client, std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>* partial) argument
2181 makeClientDescriptor( const sp<BasicClient>& value, const CameraService::DescriptorPtr& partial) argument
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp702 ssize_t partial = (nRead+512) % 512; local
703 if (partial > 0) {
704 ssize_t remainder = 512 - partial;
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDeviceImpl.java254 // 1 means partial result is not supported.
1072 * This method is called when an image capture makes partial forward progress; some
1335 /** Map frame numbers to list of partial results */
1398 * <p>It keeps a track of all the partial results already created for a particular
1402 * @param result the total or partial result
1403 * @param partial {@true} if the result is partial, {@code false} if total
1406 public void updateTracker(long frameNumber, CaptureResult result, boolean partial, argument
1408 if (!partial) {
1432 * Attempt to pop off all of the partial result
[all...]
/frameworks/base/core/java/android/os/
H A DDebug.java2029 * @param partial If false, sets all static fields, otherwise, only set
2036 public static void setFieldsOn(Class<?> cl, boolean partial) { argument
2043 if (!partial || field.getAnnotation(DebugProperty.class) != null) {
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp202 // Will the HAL be sending in early partial result metadata?
1889 * Check if all 3A fields are ready, and send off a partial 3A-only result
1894 const CameraMetadata& partial, const CaptureResultExtras& resultExtras) {
1915 gotAllStates &= get3AResult(partial, ANDROID_CONTROL_AF_MODE,
1918 gotAllStates &= get3AResult(partial, ANDROID_CONTROL_AWB_MODE,
1921 gotAllStates &= get3AResult(partial, ANDROID_CONTROL_AE_STATE,
1924 gotAllStates &= get3AResult(partial, ANDROID_CONTROL_AF_STATE,
1927 gotAllStates &= get3AResult(partial, ANDROID_CONTROL_AWB_STATE,
2013 // We only send the aggregated partial when all 3A related metadata are available
2051 SET_ERR("Frame %d: Failed to set %s in partial metadat
1892 processPartial3AResult( uint32_t frameNumber, const CameraMetadata& partial, const CaptureResultExtras& resultExtras) argument
[all...]

Completed in 94 milliseconds