Searched defs:status (Results 251 - 275 of 693) sorted by last modified time

<<11121314151617181920>>

/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pUpnpServiceResponse.java75 * @param status status code
80 protected WifiP2pUpnpServiceResponse(int status, argument
83 status, transId, dev, data);
123 sbuf.append(" status:").append(Status.toString(mStatus));
139 * @param status status code.
146 static WifiP2pUpnpServiceResponse newInstance(int status, argument
148 if (status != WifiP2pServiceResponse.Status.SUCCESS) {
149 return new WifiP2pUpnpServiceResponse(status, transI
[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/base/tools/aapt/
H A DResourceTable.cpp2414 status_t status = addEntry(mCurrentXmlPos, package, type, name, value, NULL, NULL, true); local
2415 if (status == NO_ERROR) {
H A DWorkQueue.cpp48 status_t status = workThread->run("WorkQueue::WorkThread"); local
49 if (status) {
50 return status;
H A DPackage.cpp99 status_t status; local
101 status = zip->open(outputFile.string(), ZipFile::kOpenReadWrite | ZipFile::kOpenCreate);
102 if (status != NO_ERROR) {
H A DResource.cpp350 status_t status = preProcessImage(mBundle, mAssets, mFile, NULL); local
351 if (status) {
375 status_t status = wq.schedule(w); local
376 if (status) {
377 fprintf(stderr, "preProcessImages failed: schedule() returned %d\n", status);
383 status_t status = wq.finish(); local
384 if (status) {
385 fprintf(stderr, "preProcessImages failed: finish() returned %d\n", status);
/frameworks/base/tools/bit/
H A Dadb.cpp253 TestStatus status;
254 err = read_sized_proto(fd, &status);
258 callbacks->OnTestStatus(status);
260 SessionStatus status; local
261 err = read_sized_proto(fd, &status);
265 callbacks->OnSessionStatus(status);
333 int status;
334 waitpid(pid, &status, 0);
338 if (WIFEXITED(status)) {
339 return WEXITSTATUS(status);
[all...]
H A Dcommand.cpp146 int status; local
147 waitpid(pid, &status, 0);
148 if (WIFEXITED(status)) {
149 *err = WEXITSTATUS(status);
179 int status; local
180 waitpid(pid, &status, 0);
181 if (WIFEXITED(status)) {
182 return WEXITSTATUS(status);
H A Dmain.cpp184 virtual void OnTestStatus(TestStatus& status);
185 virtual void OnSessionStatus(SessionStatus& status);
203 TestResults::OnTestStatus(TestStatus& status) argument
207 // status.PrintDebugString();
208 int32_t resultCode = status.has_results() ? status.result_code() : 0;
210 if (!status.has_results()) {
213 const ResultsBundle &results = status.results();
269 TestResults::OnSessionStatus(SessionStatus& status) argument
271 //status
[all...]
/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/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
H A DSoundTriggerTestService.java251 boolean status = mSoundTriggerUtil.addOrUpdateSoundModel(soundModel);
252 if (status) {
276 boolean status = mSoundTriggerUtil.deleteSoundModel(modelUuid);
277 if (status) {
300 boolean status = mSoundTriggerUtil.addOrUpdateSoundModel(updated);
301 if (status) {
656 public void onAvailabilityChanged(int status) { argument
657 postMessage(mModelInfo.name + " availability changed to: " + status);
/frameworks/base/tests/SoundTriggerTests/src/android/hardware/soundtrigger/stubhal/
H A DGenericSoundModelTest.java188 int status;
191 public ModelInfo(GenericSoundModel model, int status) {
192 this.status = status;
227 if (operation == 0 && modelInfo.status == STATUS_UNLOADED) {
231 modelInfo.status = STATUS_LOADED;
232 } else if (operation == 1 && modelInfo.status == STATUS_LOADED) {
238 modelInfo.status = STATUS_STARTED;
239 } else if (operation == 2 && modelInfo.status == STATUS_STARTED) {
250 } else if (operation == 3 && modelInfo.status
281 onError(int status) argument
[all...]
/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/telecomm/java/android/telecom/
H A DInCallService.java570 * @param handler A handler which commands and status changes will be delivered to.
727 * @param status Status of the session modify request. Valid values are
736 public abstract void onSessionModifyResponseReceived(int status, argument
H A DRemoteConnection.java126 * Indicates that the VOIP audio status of this {@code RemoteConnection} has changed.
135 * Indicates that the status hints of this {@code RemoteConnection} have changed. See
139 * @param statusHints The new status hints of the {@code RemoteConnection}.
305 * @param status Status of the session modify request.
315 int status,
390 public void receiveSessionModifyResponse(int status, VideoProfile requestedProfile,
395 status,
738 * @param handler A {@code Handler} which command and status changes will be delivered to.
813 * Obtains status hints pertaining to this {@code RemoteConnection}.
313 onSessionModifyResponseReceived( VideoProvider videoProvider, int status, VideoProfile requestedProfile, VideoProfile responseProfile) argument
H A DVideoCallImpl.java73 public void receiveSessionModifyResponse(int status, VideoProfile requestProfile, argument
79 args.arg1 = status;
162 int status = (int) args.arg1;
167 status, requestProfile, responseProfile);
/frameworks/base/telephony/java/android/telephony/
H A DIccOpenLogicalChannelResponse.java33 * Possible status values returned by open channel command.
54 public IccOpenLogicalChannelResponse(int channel, int status, byte[] selectResponse) { argument
56 mStatus = status;
83 * @return the status of the command.
H A DPhysicalChannelConfig.java45 /** Connection status is unknown. */
49 * Connection status of the cell.
60 public PhysicalChannelConfig(int status, int bandwidth) { argument
61 mCellConnectionStatus = status;
89 * Gets the connection status of the cell.
95 * @return Connection status of the cell
102 /** @return String representation of the connection status */
H A DSmsManager.java306 * raw pdu of the status report is in the extended data ("pdu").
421 * raw pdu of the status report is in the extended data ("pdu").
595 * to the recipient. The raw pdu of the status report is in the
698 * to the recipient. The raw pdu of the status report is in the
822 * raw pdu of the status report is in the extended data ("pdu").
981 * @param status message status (STATUS_ON_ICC_READ, STATUS_ON_ICC_UNREAD,
988 public boolean copyMessageToIcc(byte[] smsc, byte[] pdu,int status) { argument
999 status, pdu, smsc);
1044 * @param newStatus new message status (STATUS_ON_ICC_REA
[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 DImsCallForwardInfo.java63 public ImsCallForwardInfo(int condition, int status, int toA, int serviceClass, String number, argument
66 mStatus = status;
H A DImsCallSession.java441 public void callSessionRttModifyResponseReceived(int status) { argument
1390 public void callSessionRttModifyResponseReceived(int status) { argument
1392 mListener.callSessionRttModifyResponseReceived(status);
H A DImsCallSessionListener.java580 * @param status the received response for RTT modify request.
582 public void callSessionRttModifyResponseReceived(int status) { argument
584 mListener.callSessionRttModifyResponseReceived(status);
H A DImsConferenceState.java47 // user > endpoint > status
48 public static final String STATUS = "status";
51 * status-type (String) :
88 * conference-info : SIP status code (integer)
151 * Translates an {@code ImsConferenceState} status type to a telecom connection state.
153 * @param status The status type.
156 public static int getConnectionStateForStatus(String status) { argument
157 if (status.equals(STATUS_PENDING)) {
159 } else if (status
[all...]
H A DImsSsInfo.java31 * For the status of service registration or activation/deactivation.
52 * @param status The status of the service registration of activation/deactiviation. Valid
59 public ImsSsInfo(int status, String icbNum) { argument
60 mStatus = status;
103 * @return Supplementary Service Configuration status. Valid Values are:

Completed in 532 milliseconds

<<11121314151617181920>>