Searched refs:status (Results 101 - 125 of 352) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
H A DWifiClientTest.java176 assertTrue(c.status == Status.ENABLED);
178 assertFalse(c.status == Status.ENABLED);
190 assertTrue(c.status == Status.DISABLED);
274 // Test case 6: test configured network status
285 assertTrue(c.status != WifiConfiguration.Status.CURRENT);
297 assertTrue(c.status == WifiConfiguration.Status.CURRENT);
299 assertTrue(c.status != WifiConfiguration.Status.CURRENT);
310 assertTrue(c.status != WifiConfiguration.Status.CURRENT);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java107 /** Device connection status */
108 public int status = UNAVAILABLE; field in class:WifiP2pDevice
219 status = AVAILABLE;
296 sbuf.append("\n status: ").append(status);
316 status = source.status;
330 dest.writeInt(status);
351 device.status = in.readInt();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimSmsInterfaceManager.java127 * @param status new message status (STATUS_ON_ICC_READ,
135 updateMessageOnIccEf(int index, int status, byte[] pdu) { argument
137 " status=" + status + " ==> " +
144 if (status == STATUS_ON_ICC_FREE) {
149 byte[] record = makeSmsRecordData(status, pdu);
167 * @param status message status (STATUS_ON_ICC_READ, STATUS_ON_ICC_UNREAD,
172 public boolean copyMessageToIccEf(int status, byt argument
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.cpp123 status_t status = parseUrl(); local
125 if (OK != status) {
127 return status;
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Dreflist.cpp142 AVCStatus status = AVC_SUCCESS; local
149 status = ReorderRefPicList(video, 0);
150 if (status != AVC_SUCCESS)
151 return status;
158 return status;
164 AVCStatus status; local
232 status = ReorderShortTerm(video, picNumLX, &refIdxLX, isL1);
233 if (status != AVC_SUCCESS)
235 return status;
240 status
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_dpb.c71 /* macros to determine picture status. Note that IS_SHORT_TERM macro returns
74 #define IS_REFERENCE(a) ((a).status)
75 #define IS_EXISTING(a) ((a).status > NON_EXISTING)
77 ((a).status == NON_EXISTING || (a).status == SHORT_TERM)
78 #define IS_LONG_TERM(a) ((a).status == LONG_TERM)
81 #define SET_UNUSED(a) (a).status = UNUSED;
439 dpb->buffer[index].status = LONG_TERM;
580 dpb->currentOut->status = LONG_TERM;
641 u32 i, status; local
[all...]
H A Dh264bsd_sei.c187 u32 tmp, payloadType, payloadSize, status; local
223 status = DecodeBufferingPeriod(
235 status = DecodePictureTiming(
251 status = DecodePanScanRectangle(
257 status = DecodeFillerPayload(pStrmData, payloadSize);
261 status = DecodeUserDataRegisteredITuTT35(
268 status = DecodeUserDataUnregistered(
275 status = DecodeRecoveryPoint(
281 status = DecodeDecRefPicMarkingRepetition(
289 status
[all...]
/frameworks/base/location/java/android/location/
H A DGpsStatus.java90 * Event sent periodically to report GPS satellite status.
91 * Call {@link #getSatellites()} to retrieve the status for each satellite.
96 * Used for receiving notifications when GPS status has changed.
100 * Called to report changes in the GPS status.
111 * status information.
137 * Used internally within {@link LocationManager} to copy GPS status
139 * Is synchronized to ensure that GPS status updates are atomic.
173 void setStatus(GpsStatus status) { argument
174 mTimeToFirstFix = status.getTimeToFirstFix();
177 mSatellites[i].setStatus(status
[all...]
/frameworks/native/libs/utils/
H A DWorkQueue.cpp48 status_t status = workThread->run("WorkQueue::WorkThread"); local
49 if (status) {
50 return status;
/frameworks/rs/cpp/
H A DRenderScript.cpp48 int status = pthread_join(mMessageThreadId, &res); local
72 int status = pthread_create(&mMessageThreadId, NULL, threadProc, this); local
73 if (status) {
/frameworks/rs/driver/
H A DrsdFrameBufferObj.cpp50 GLenum status; local
51 status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
52 switch (status) {
/frameworks/base/media/java/android/media/audiofx/
H A DPresetReverb.java179 * @param status status of the set parameter operation.
183 void onParameterChange(PresetReverb effect, int status, int param, short value); argument
194 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
213 l.onParameterChange(PresetReverb.this, status, p, v);
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp312 int status; local
383 int status = 0; local
451 status = -EINVAL;
462 status = -EINVAL;
473 status = -EINVAL;
501 status = -EINVAL;
524 status = -EINVAL;
528 return status;
552 int status = 0; local
565 status
[all...]
/frameworks/av/media/libmedia/
H A DMediaScanner.cpp214 status_t status = client.scanFile(path, statbuf.st_mtime, 0, local
216 if (status) {
230 status_t status = client.scanFile(path, statbuf.st_mtime, statbuf.st_size, local
232 if (status) {
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp33 AssemblyStatus status; local
35 status = assembleMore(source);
37 if (status == WRONG_SEQUENCE_NUMBER) {
53 if (status == NOT_ENOUGH_DATA) {
/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java104 //Log.d("ddm-thread", "Thread status request");
106 byte[] status = DdmVmInternal.getThreadStats();
107 if (status != null)
108 return new Chunk(CHUNK_THST, status, 0, status.length);
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPerms/src/com/android/framework/externalsharedpermstestapp/
H A DExternalSharedPermsTest.java45 public void onStatusChanged(String provider, int status, Bundle extras) {}
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsDiffKey/src/com/android/framework/externalsharedpermsdiffkeytestapp/
H A DExternalSharedPermsDiffKeyTest.java43 public void onStatusChanged(String provider, int status, Bundle extras) {}
/frameworks/base/services/jni/
H A Dcom_android_server_BatteryService.cpp88 static jint getBatteryStatus(const char* status) argument
90 switch (status[0]) {
98 ALOGW("Unknown battery status '%s'", status);
104 static jint getBatteryHealth(const char* status) argument
106 switch (status[0]) {
111 if (strcmp(status, "Overheat") == 0) {
113 } else if (strcmp(status, "Over voltage") == 0) {
116 ALOGW("Unknown battery health[1] '%s'", status);
121 if (strcmp(status, "Unspecifie
[all...]
/frameworks/opt/telephony/src/java/android/telephony/gsm/
H A DSmsManager.java70 * raw pdu of the status report is in the extended data ("pdu").
121 * to the recipient. The raw pdu of the status report is in the
155 * raw pdu of the status report is in the extended data ("pdu").
173 * @param status message status (STATUS_ON_SIM_READ, STATUS_ON_SIM_UNREAD,
180 public final boolean copyMessageToSim(byte[] smsc, byte[] pdu, int status) { argument
181 return mSmsMgrProxy.copyMessageToIcc(smsc, pdu, status);
201 * @param newStatus new message status (STATUS_ON_SIM_READ,
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp576 status_t status = window->allocRow(); local
577 if (status) {
579 startPos, addedRows, status);
595 status = window->putString(addedRows, i, text, sizeIncludingNull);
596 if (status) {
598 sizeIncludingNull, startPos + addedRows, i, status);
607 status = window->putLong(addedRows, i, value);
608 if (status) {
610 i, status);
618 status
673 status_t status = window->clear(); local
[all...]
H A Dandroid_media_AudioSystem.cpp47 static int check_AudioSystem_Command(status_t status) argument
49 if (status == NO_ERROR) {
95 int status = check_AudioSystem_Command(AudioSystem::setParameters(0, c_keyValuePairs8)); local
96 return status;
142 int status = check_AudioSystem_Command(AudioSystem::setDeviceConnectionState(static_cast <audio_devices_t>(device), local
146 return status;
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestLoopUri.cpp71 SLuint32 status; local
72 result = (*caller)->GetPrefetchStatus(caller, &status);
78 fprintf(stdout, "\t\tPrefetchEventCallback: Prefetch Status is = %u\n", status);
82 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
86 status == SL_PREFETCHSTATUS_SUFFICIENTDATA) {
87 new_prefetch_status = status;
240 // wait for prefetch status callback to indicate either sufficient data or error
/frameworks/base/core/java/android/app/
H A DDownloadManager.java111 * Current status of the download, as one of the STATUS_* constants.
116 * Provides more detail on the status of the download. Its meaning depends on the value of
120 * occurred. If an HTTP error occurred, this will hold the HTTP status code as defined in RFC
130 * status codes</a>
757 * Include only downloads with status matching any the given status flags.
1000 int status = cursor.getInt(cursor.getColumnIndexOrThrow(COLUMN_STATUS));
1001 if (DownloadManager.STATUS_SUCCESSFUL == status) {
1027 // downloaded file not found or its status is not 'successfully completed'
1059 // downloaded file not found or its status i
1291 getReason(int status) argument
1304 getPausedReason(int status) argument
1320 getErrorCode(int status) argument
1358 translateStatus(int status) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DKeyguardUpdateMonitor.java156 final int status = intent.getIntExtra(EXTRA_STATUS, BATTERY_STATUS_UNKNOWN);
161 MSG_BATTERY_UPDATE, new BatteryStatus(status, level, plugged, health));
245 public final int status; field in class:KeyguardUpdateMonitor.BatteryStatus
249 public BatteryStatus(int status, int level, int plugged, int health) { argument
250 this.status = status;
268 * battery level, so this allows either battery level or status to determine if the
273 return status == BATTERY_STATUS_FULL || level >= 100;
298 // Take a guess at initial SIM state, battery status and PLMN until we get an update
431 private void handleBatteryUpdate(BatteryStatus status) { argument
[all...]

Completed in 555 milliseconds

1234567891011>>