Searched defs:status (Results 176 - 200 of 380) sorted by relevance

1234567891011>>

/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/wifi/java/android/net/wifi/
H A DScanResult.java110 * Status: indicating join status
128 public void setAutoJoinStatus(int status) { argument
129 if (status < 0) status = 0;
130 if (status == 0) {
132 } else if (status > autoJoinStatus) {
135 autoJoinStatus = status;
307 sb.append(", status: ").append(autoJoinStatus);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java108 /** Device connection status */
109 public int status = UNAVAILABLE; field in class:WifiP2pDevice
220 status = AVAILABLE;
273 status = device.status;
317 sbuf.append("\n status: ").append(status);
337 status = source.status;
351 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/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp414 Compiler::ErrorCode status = compileScript(script, pResName, local
419 return status == Compiler::kSuccess;
443 Compiler::ErrorCode status = compileScript(pScript, pOut, pOut, pRuntimePath, bitcode_sha1, local
445 if (status != Compiler::kSuccess) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h112 : name(pName), fileOffset(pOffset), status(pStatus)
121 enum Status status; member in struct:mcld::Archive::Symbol
212 /// getSymbolStatus - get the status of a symbol
215 /// setSymbolStatus - set the status of a symbol
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp132 Archive::Symbol::Status status = local
134 if (Archive::Symbol::Unknown != status)
135 pArchive.setSymbolStatus(idx, status);
137 if (Archive::Symbol::Include == status) {
/frameworks/native/libs/binder/
H A DBpBinder.cpp164 status_t status = IPCThreadState::self()->transact( local
166 if (status == DEAD_OBJECT) mAlive = 0;
167 return status;
H A DProcessState.cpp202 // driver API does not return status.
213 status_t status = IPCThreadState::self()->transact( local
215 if (status == DEAD_OBJECT)
/frameworks/native/libs/input/
H A DKeyLayoutMap.cpp56 status_t status = Tokenizer::open(filename, &tokenizer); local
57 if (status) {
58 ALOGE("Error %d opening key layout map file %s.", status, filename.string());
63 status = NO_MEMORY;
69 status = parser.parse();
76 if (!status) {
82 return status;
211 status_t status = parseKey(); local
212 if (status) return status;
215 status_t status = parseAxis(); local
219 status_t status = parseLed(); local
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.cpp219 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
232 *status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);
218 bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) argument
H A DGLES20RenderEngine.cpp188 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
200 *status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
187 bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) argument
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessage.java95 public BluetoothMapBmessage setStatus(Status status) { argument
96 mBmsgStatus = status;
159 json.put("status", mBmsgStatus);
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsVideoCallProvider.java195 int status, VideoProfile requestedProfile, VideoProfile responseProfile) {
198 mCallback.receiveSessionModifyResponse(status, requestedProfile, responseProfile);
194 receiveSessionModifyResponse( int status, VideoProfile requestedProfile, VideoProfile responseProfile) argument
H A DImsVideoCallProviderWrapper.java72 int status, VideoProfile requestProfile, VideoProfile responseProfile) {
74 args.arg1 = status;
117 int status = (int) args.arg1;
121 receiveSessionModifyResponse(status, requestProfile, responseProfile);
71 receiveSessionModifyResponse( int status, VideoProfile requestProfile, VideoProfile responseProfile) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccPhoneBookInterfaceManager.java107 AtomicBoolean status = (AtomicBoolean) ar.userObj;
108 status.set(true);
180 AtomicBoolean status = new AtomicBoolean(false);
181 Message response = mBaseHandler.obtainMessage(EVENT_UPDATE_DONE, status);
186 waitForResult(status);
228 AtomicBoolean status = new AtomicBoolean(false);
229 Message response = mBaseHandler.obtainMessage(EVENT_UPDATE_DONE, status);
233 waitForResult(status);
275 AtomicBoolean status = new AtomicBoolean(false);
276 Message response = mBaseHandler.obtainMessage(EVENT_LOAD_DONE, status);
298 waitForResult(AtomicBoolean status) argument
[all...]
/frameworks/rs/
H A DrsFileA3D.cpp359 int status = fclose(writeHandle); local
361 if (status != 0) {
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaItemStatus.java25 * Describes the playback status of a media item.
38 * While the item is playing, the playback status may also include progress information
43 * To monitor playback status, the application should supply a {@link PendingIntent} to use as the
44 * {@link MediaControlIntent#EXTRA_ITEM_STATUS_UPDATE_RECEIVER item status update receiver}
46 * the status update receiver will only be invoked for major status changes such as a
49 * The status update receiver will not be invoked for minor progress updates such as
52 * {@link MediaControlIntent#ACTION_GET_STATUS get status request} to poll for changes
168 * Integer extra: HTTP status code.
170 * Specifies the HTTP status cod
332 Builder(MediaItemStatus status) argument
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp460 status_t status; local
461 status = mPlayer->attachAuxEffect(effectId);
462 // attachAuxEffect returns a status but we have no way to report it back to app
463 (void) status;
474 status_t status; local
475 status = mPlayer->setAuxEffectSendLevel(level);
476 // setAuxEffectSendLevel returns a status but we have no way to report it back to app
477 (void) status;
494 // handle prefetch status update
501 // evaluate prefetch status base
548 status_t status = mPlayer->getParameter(KEY_PARAMETER_AUDIO_CHANNEL_COUNT, reply); local
[all...]
/frameworks/wilhelm/src/itf/
H A DIEnvironmentalReverb.c59 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
61 result = android_fx_statusToResult(status);
86 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
88 result = android_fx_statusToResult(status);
120 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
122 result = android_fx_statusToResult(status);
148 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
150 result = android_fx_statusToResult(status);
179 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
181 result = android_fx_statusToResult(status);
207 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
238 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
266 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
299 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
327 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
358 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
386 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
419 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
447 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
478 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
506 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
537 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
565 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
596 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
624 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
680 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
708 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
[all...]
H A DIEqualizer.c68 android::status_t status = local
70 result = android_fx_statusToResult(status);
163 android::status_t status = local
165 result = android_fx_statusToResult(status);
196 android::status_t status = local
198 result = android_fx_statusToResult(status);
231 android::status_t status =
233 result = android_fx_statusToResult(status);
270 android::status_t status =
272 result = android_fx_statusToResult(status);
326 android::status_t status = local
358 android::status_t status = local
398 android::status_t status = local
[all...]
/frameworks/wilhelm/tests/examples/
H A DslesTestSendToPresetReverb.cpp47 // Prefetch status callback
61 SLuint32 status; local
62 result = (*caller)->GetPrefetchStatus(caller, &status);
65 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp68 // Prefetch status callback
77 SLuint32 status; local
78 result = (*caller)->GetPrefetchStatus(caller, &status);
82 && level == 0 && status == SL_PREFETCHSTATUS_UNDERFLOW) {
85 status == SL_PREFETCHSTATUS_SUFFICIENTDATA) {
86 new_prefetch_status = status;
250 // get the prefetch status interface
254 // enable prefetch status callbacks
312 // wait for prefetch status callback to indicate either sufficient data or error
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestGetPositionUri.cpp70 SLuint32 status; local
72 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErr(res);
74 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
83 fprintf(stdout, "PrefetchEventCallback: Prefetch Status is = %u\n", status);
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

Completed in 661 milliseconds

1234567891011>>