Searched defs:status (Results 301 - 325 of 693) sorted by relevance

<<11121314151617181920>>

/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DVirtualizerTest.java199 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
203 Log.d(TAG,"onParameterChange, status: "+status+" p: "+p+" v: "+v);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraBinderTest.java303 public void onStatusChanged(int status, String cameraId) argument
305 Log.v(TAG, String.format("Camera %s has status changed to 0x%x", cameraId, status));
307 public void onTorchStatusChanged(int status, String cameraId) argument
309 Log.v(TAG, String.format("Camera %s has torch status changed to 0x%x",
310 cameraId, status));
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java82 public void onLoadComplete(SoundPool soundPool, int sampleId, int status) { argument
84 if (DEBUG) Log.d(LOG_TAG, "Sample " + sampleId + " load status = " + status);
85 if (status != 0) {
86 mLoadStatus = status;
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusionEngine.java275 public void onStatusChanged(String provider, int status, Bundle extras) { } argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DStorageNotification.java142 public void onStatusChanged(int moveId, int status, long estMillis) {
149 if (PackageManager.isMoveStatusFinished(status)) {
150 onMoveFinished(move, status);
152 onMoveProgress(move, status, estMillis);
466 private void onMoveProgress(MoveInfo move, int status, long estMillis) { argument
499 .setProgress(100, status, false)
507 private void onMoveFinished(MoveInfo move, int status) { argument
521 if (status == PackageManager.MOVE_SUCCEEDED) {
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/
H A DTunerCallback.java106 public void onError(int status) { argument
107 dispatch(() -> mClientCallback.onError(status));
/frameworks/base/services/core/java/com/android/server/location/
H A DGeofenceManager.java434 public void onStatusChanged(String provider, int status, Bundle extras) { } argument
H A DMockProvider.java123 public void setStatus(int status, Bundle extras, long updateTime) { argument
124 mStatus = status;
/frameworks/base/services/core/java/com/android/server/notification/
H A DCalendarTracker.java194 final int status = cursor.getInt(2);
195 final boolean meetsReply = meetsReply(filter.reply, status);
198 String.format("status=%s, meetsReply=%s",
199 attendeeStatusToString(status), meetsReply));
231 private static String attendeeStatusToString(int status) { argument
232 switch (status) {
238 default: return "ATTENDEE_STATUS_UNKNOWN_" + status;
H A DNotificationDelegate.java24 void onSetDisabled(int status); argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DInstantAppResolver.java513 @ResolutionStatus int status) {
519 .addTaggedData(FIELD_INSTANT_APP_RESOLUTION_STATUS, new Integer(status));
512 logMetrics(int action, long startTime, String token, @ResolutionStatus int status) argument
/frameworks/base/services/core/java/com/android/server/timezone/
H A DPackageStatusStorage.java62 * Attribute that stores the current "check status" of the time zone update application
84 mPackageStatusFile = new AtomicFile(new File(storageDir, "package-status.xml"), "timezone-status");
105 * Obtain the current check status of the application packages. Returns {@code null} the first
114 Slog.e(LOG_TAG, "Package status invalid, resetting and retrying", e);
140 ParseException e2 = new ParseException("Error reading package status", 0);
164 writePackageStatusLocked(null /* status */, initialOptimisticLockId,
183 Slog.w(LOG_TAG, "Unable to find optimistic lock ID from package status");
195 throw new IllegalStateException("Unable to update status to CHECK_STARTED."
215 + " status");
288 writePackageStatusWithOptimisticLockCheck(int optimisticLockId, int newOptimisticLockId, Integer status, PackageVersions packageVersions) argument
308 writePackageStatusLocked(Integer status, int optimisticLockId, PackageVersions packageVersions) argument
[all...]
/frameworks/base/telephony/java/android/telephony/data/
H A DDataCallResponse.java50 * @param status Data call fail cause. 0 indicates no error.
53 * @param active Data connection active status. 0 = inactive, 1 = active/physical link down,
72 public DataCallResponse(int status, int suggestedRetryTime, int cid, int active, argument
78 mStatus = status;
179 .append(" status=").append(mStatus)
/frameworks/base/telephony/java/android/telephony/ims/
H A DImsCallSessionListener.java580 * @param status the received response for RTT modify request.
582 public void callSessionRttModifyResponseReceived(int status) { argument
584 mListener.callSessionRttModifyResponseReceived(status);
/frameworks/base/test-runner/src/android/test/
H A DAndroidTestRunner.java241 public void testFailed(int status, Test test, Throwable t) { argument
/frameworks/base/test-runner/src/junit/runner/
H A DBaseTestRunner.java88 public abstract void testFailed(int status, Test test, Throwable t); argument
224 * Clears the status message.
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A DTrackerService.java333 * @param provider - name of provider whose status changed
334 * @param status - new status
335 * @param extras - optional set of extra status messages
337 public void onStatusChanged(String provider, int status, Bundle extras) { argument
339 mTrackerData.writeEntry(provider, "status change: " + status);
/frameworks/base/tools/aapt/
H A DPackage.cpp99 status_t status; local
101 status = zip->open(outputFile.string(), ZipFile::kOpenReadWrite | ZipFile::kOpenCreate);
102 if (status != NO_ERROR) {
/frameworks/base/tools/incident_report/
H A Dmain.cpp389 int status; local
391 waitpid(pid, &status, 0);
392 } while (!WIFEXITED(status));
393 if (WEXITSTATUS(status) != 0) {
394 return WEXITSTATUS(status);
588 int status; local
590 waitpid(childPid, &status, 0);
591 } while (!WIFEXITED(status));
592 if (WEXITSTATUS(status) != 0) {
593 return WEXITSTATUS(status);
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java117 /** Device connection status */
118 public int status = UNAVAILABLE; field in class:WifiP2pDevice
229 status = AVAILABLE;
282 status = device.status;
327 sbuf.append("\n status: ").append(status);
348 status = source.status;
363 dest.writeInt(status);
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceResponse.java70 * The status code of service discovery response.
71 * Currently 4 status codes are defined and the status codes from 4 to 255
90 public static String toString(int status) { argument
91 switch(status) {
113 * @param status status code.
118 protected WifiP2pServiceResponse(int serviceType, int status, int transId, argument
121 mStatus = status;
138 * Return the status cod
[all...]
/frameworks/base/wifi/java/android/net/wifi/rtt/
H A DRangingResult.java53 * Individual range request status, {@link #getStatus()}. Indicates ranging operation was
59 * Individual range request status, {@link #getStatus()}. Indicates ranging operation failed
65 * Individual range request status, {@link #getStatus()}. Indicates that the ranging operation
88 public RangingResult(@RangeResultStatus int status, @NonNull MacAddress mac, int distanceMm, argument
91 mStatus = status;
105 public RangingResult(@RangeResultStatus int status, PeerHandle peerHandle, int distanceMm, argument
108 mStatus = status;
122 * @return The status of ranging measurement: {@link #STATUS_SUCCESS} in case of success, and
336 int status = in.readInt();
356 return new RangingResult(status, peerHandl
[all...]
/frameworks/compile/libbcc/lib/
H A DRSCompilerDriver.cpp294 Compiler::ErrorCode status = compileScript(script, pResName, local
300 return status == Compiler::kSuccess;
445 Compiler::ErrorCode status = compileScript(pScript, pOut, pOut, pRuntimePath, local
447 if (status != Compiler::kSuccess) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h98 : name(pName), fileOffset(pOffset), status(pStatus) {}
105 enum Status status; member in struct:mcld::Archive::Symbol
195 /// getSymbolStatus - get the status of a symbol
198 /// setSymbolStatus - set the status of a symbol
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp124 Archive::Symbol::Status status = local
126 if (Archive::Symbol::Unknown != status)
127 pArchive.setSymbolStatus(idx, status);
129 if (Archive::Symbol::Include == status) {

Completed in 391 milliseconds

<<11121314151617181920>>