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

/frameworks/base/core/java/android/content/pm/
H A DUserInfo.java104 public boolean partial; field in class:UserInfo
219 partial = orig.partial;
247 dest.writeInt(partial ? 1 : 0);
272 partial = source.readInt() != 0;
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h406 const CameraService::DescriptorPtr& partial);
506 std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>* partial);
570 * values set in the partial descriptor passed in to construct the actual client descriptor.
867 std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>> partial; local
870 /*out*/&partial)) != NO_ERROR) {
969 finishConnectLocked(client, partial);
H A DCameraService.cpp1070 std::shared_ptr<resource_policy::ClientDescriptor<String8, sp<BasicClient>>>* partial) {
1244 *partial = clientDescriptor;
2440 const sp<BasicClient>& value, const CameraService::DescriptorPtr& partial) {
2441 return makeClientDescriptor(partial->getKey(), value, partial->getCost(),
2442 partial->getConflicting(), partial->getPriority(), partial->getOwnerId());
1066 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
2439 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.
1079 * This method is called when an image capture makes partial forward progress; some
1347 /** Map frame numbers to list of partial results */
1410 * <p>It keeps a track of all the partial results already created for a particular
1414 * @param result the total or partial result
1415 * @param partial {@true} if the result is partial, {@code false} if total
1418 public void updateTracker(long frameNumber, CaptureResult result, boolean partial, argument
1420 if (!partial) {
1444 * Attempt to pop off all of the partial result
[all...]
/frameworks/base/core/java/android/os/
H A DDebug.java2149 * @param partial If false, sets all static fields, otherwise, only set
2156 public static void setFieldsOn(Class<?> cl, boolean partial) { argument
2163 if (!partial || field.getAnnotation(DebugProperty.class) != null) {

Completed in 1940 milliseconds