Searched defs:status (Results 26 - 50 of 264) sorted by relevance

1234567891011

/frameworks/av/media/libnbaio/
H A DAudioBufferProviderSource.cpp58 status_t status = mProvider->getNextBuffer(&mBuffer, readPTS); local
59 if (status != OK) {
60 return status == NOT_ENOUGH_DATA ? (ssize_t) WOULD_BLOCK : (ssize_t) status;
105 status_t status = mProvider->getNextBuffer(&mBuffer, readPTS); local
106 if (CC_LIKELY(status == OK)) {
113 if (CC_LIKELY(status == NOT_ENOUGH_DATA)) {
114 status = WOULD_BLOCK;
116 return accumulator > 0 ? accumulator : (ssize_t) status;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dbitstream_io.cpp144 AVCEnc_Status status = AVCENC_SUCCESS; local
162 status = AVCBitstreamSaveWord(stream);
163 return status;
174 status = AVCBitstreamSaveWord(stream); /* save current word */
181 return status;
196 AVCEnc_Status status; local
207 status = AVCBitstreamSaveWord(stream);
208 return status;
228 AVCEnc_Status status; local
235 status
[all...]
H A Dheader.cpp31 AVCEnc_Status status = AVCENC_SUCCESS; local
35 status = BitstreamWriteBits(stream, 8, seqParam->profile_idc);
36 status = BitstreamWrite1Bit(stream, seqParam->constrained_set0_flag);
37 status = BitstreamWrite1Bit(stream, seqParam->constrained_set1_flag);
38 status = BitstreamWrite1Bit(stream, seqParam->constrained_set2_flag);
39 status = BitstreamWrite1Bit(stream, seqParam->constrained_set3_flag);
40 status = BitstreamWriteBits(stream, 4, 0); /* forbidden zero bits */
41 if (status != AVCENC_SUCCESS) /* we can check after each write also */
43 return status;
46 status
230 AVCEnc_Status status = AVCENC_SUCCESS; local
322 AVCEnc_Status status = AVCENC_SUCCESS; local
510 AVCEnc_Status status = AVCENC_SUCCESS; local
590 AVCEnc_Status status = AVCENC_SUCCESS; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAH263Assembler.cpp42 AssemblyStatus status = addPacket(source); local
43 if (status == MALFORMED_PACKET) {
46 return status;
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/net/http/
H A DLoggingEventHandler.java34 public void status(int major_version, method in class:LoggingEventHandler
39 HttpLog.v("LoggingEventHandler:status() major: " + major_version +
/frameworks/base/core/java/android/os/storage/
H A DIObbActionListener.java74 int status;
75 status = data.readInt();
76 this.onObbResult(filename, nonce, status);
104 * @param returnCode status of the operation
106 public void onObbResult(String filename, int nonce, int status) argument
114 _data.writeInt(status);
133 * @param status status code as defined in {@link OnObbStateChangeListener}
135 public void onObbResult(String filename, int nonce, int status) throws RemoteException; argument
/frameworks/base/core/jni/
H A Dandroid_view_PointerIcon.cpp99 status_t status = android_view_PointerIcon_load(env, pointerIconObj, local
102 return status;
/frameworks/base/libs/androidfw/
H A DVirtualKeyMap.cpp52 status_t status = Tokenizer::open(filename, &tokenizer); local
53 if (status) {
54 ALOGE("Error %d opening virtual key map file %s.", status, filename.string());
59 status = NO_MEMORY;
65 status = parser.parse();
72 if (status) {
80 return status;
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardUpdateMonitorCallback.java28 * Called when the battery status changes, e.g. when plugged in or unplugged, charge
31 * @param status current battery status
33 void onRefreshBatteryInfo(KeyguardUpdateMonitor.BatteryStatus status) { } argument
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DKeyguardUpdateMonitorCallback.java28 * Called when the battery status changes, e.g. when plugged in or unplugged, charge
31 * @param status current battery status
33 void onRefreshBatteryInfo(KeyguardUpdateMonitor.BatteryStatus status) { } argument
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java96 public void updateStatus(String deviceAddress, int status) { argument
100 d.status = status;
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pDnsSdServiceResponse.java131 sbuf.append(" status:").append(Status.toString(mStatus));
147 * @param status status code.
152 protected WifiP2pDnsSdServiceResponse(int status, argument
155 status, tranId, dev, data);
289 * @param status status code.
295 static WifiP2pDnsSdServiceResponse newInstance(int status, argument
297 if (status != WifiP2pServiceResponse.Status.SUCCESS) {
298 return new WifiP2pDnsSdServiceResponse(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/opt/telephony/mockril/src/com/android/internal/telephony/mockril/
H A DMockRilController.java57 * @param status for MsgHeader
61 private boolean sendCtrlCommand(int cmd, long token, int status, MessageMicro pbData) { argument
63 Msg.send(mRilChannel, cmd, token, status, pbData);
/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 DrsdCore.cpp174 int status = pthread_setspecific(rsdgThreadTLSKey, &dc->mTlsStruct); local
175 if (status) {
176 ALOGE("pthread_setspecific %i", status);
230 int status = pthread_key_create(&rsdgThreadTLSKey, NULL); local
231 if (status) {
242 int status = pthread_setspecific(rsdgThreadTLSKey, &dc->mTlsStruct); local
243 if (status) {
244 ALOGE("pthread_setspecific %i", status);
269 status = pthread_attr_init(&threadAttr);
270 if (status) {
[all...]
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdCore.cpp166 int status = pthread_setspecific(rsdgThreadTLSKey, &dc->mTlsStruct); local
167 if (status) {
168 ALOGE("pthread_setspecific %i", status);
222 int status = pthread_key_create(&rsdgThreadTLSKey, NULL); local
223 if (status) {
234 int status = pthread_setspecific(rsdgThreadTLSKey, &dc->mTlsStruct); local
235 if (status) {
236 ALOGE("pthread_setspecific %i", status);
261 status = pthread_attr_init(&threadAttr);
262 if (status) {
[all...]
/frameworks/wilhelm/src/itf/
H A DIBassBoost.c51 android::status_t status = thiz->mBassBoostEffect->setEnabled((bool) thiz->mEnabled); local
52 result = android_fx_statusToResult(status);
105 android::status_t status = local
107 result = android_fx_statusToResult(status);
133 android::status_t status = local
135 result = android_fx_statusToResult(status);
163 android::status_t status =
166 result = android_fx_statusToResult(status);
H A DIPrefetchStatus.c31 SLuint32 status = thiz->mStatus; local
33 *pStatus = status;
H A DIVirtualizer.c51 android::status_t status = local
53 result = android_fx_statusToResult(status);
107 android::status_t status = android_virt_setParam(thiz->mVirtualizerEffect, local
109 result = android_fx_statusToResult(status);
135 android::status_t status = android_virt_getParam(thiz->mVirtualizerEffect, local
137 result = android_fx_statusToResult(status);
165 android::status_t status =
168 result = android_fx_statusToResult(status);
/frameworks/av/media/libmedia/
H A DIAudioTrack.cpp57 status_t status = remote()->transact(GET_CBLK, data, &reply); local
58 if (status == NO_ERROR) {
68 status_t status = remote()->transact(START, data, &reply); local
69 if (status == NO_ERROR) {
70 status = reply.readInt32();
72 ALOGW("start() error: %s", strerror(-status));
74 return status;
111 status_t status = remote()->transact(ATTACH_AUX_EFFECT, data, &reply); local
112 if (status == NO_ERROR) {
113 status
124 status_t status = remote()->transact(ALLOCATE_TIMED_BUFFER, local
141 status_t status = remote()->transact(QUEUE_TIMED_BUFFER, local
158 status_t status = remote()->transact(SET_MEDIA_TIME_TRANSFORM, local
213 status_t status = allocateTimedBuffer(data.readInt32(), &buffer); local
[all...]
H A DIEffect.cpp87 status_t status = remote()->transact(COMMAND, data, &reply); local
88 if (status != NO_ERROR) {
91 return status;
94 status = reply.readInt32();
100 return status;
117 status_t status = remote()->transact(GET_CBLK, data, &reply); local
118 if (status == NO_ERROR) {
163 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp); local
164 reply->writeInt32(status);
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) {
H A DMediaScannerClient.cpp141 UErrorCode status = U_ZERO_ERROR; local
143 UConverter *conv = ucnv_open(enc, &status);
144 if (U_FAILURE(status)) {
148 UConverter *utf8Conv = ucnv_open("UTF-8", &status);
149 if (U_FAILURE(status)) {
182 &source, (const char *)dest, NULL, NULL, NULL, NULL, TRUE, TRUE, &status);
183 if (U_FAILURE(status)) {
184 ALOGE("ucnv_convertEx failed: %d", status);
216 status_t status = handleStringTag(mNames->getEntry(i), mValues->getEntry(i)); local
217 if (status) {
[all...]

Completed in 4221 milliseconds

1234567891011