Searched defs:status (Results 51 - 75 of 380) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
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.cpp45 AssemblyStatus status = addPacket(source); local
46 if (status == MALFORMED_PACKET) {
49 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/av/soundtrigger/
H A DISoundTrigger.cpp62 status_t status = remote()->transact(LOAD_SOUND_MODEL, data, &reply); local
63 if (status != NO_ERROR ||
64 (status = (status_t)reply.readInt32()) != NO_ERROR) {
65 return status;
68 return status;
76 status_t status = remote()->transact(UNLOAD_SOUND_MODEL, data, &reply); local
77 if (status != NO_ERROR) {
78 status = (status_t)reply.readInt32();
80 return status;
95 status_t status local
107 status_t status = remote()->transact(STOP_RECOGNITION, data, &reply); local
135 status_t status = loadSoundModel(modelMemory, &handle); local
146 status_t status = unloadSoundModel(handle); local
158 status_t status = startRecognition(handle, dataMemory); local
166 status_t status = stopRecognition(handle); local
[all...]
H A DISoundTriggerHwService.cpp61 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
62 if (status == NO_ERROR) {
63 status = (status_t)reply.readInt32();
66 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
67 if (status == NO_ERROR) {
75 return status;
87 status_t status = reply.readInt32(); local
91 return status;
99 status_t status local
123 status_t status = listModules(modules, &numModules); local
146 status_t status = attach(handle, client, module); local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServerCallback.java30 * @param status Status of the connect or disconnect operation.
35 public void onConnectionStateChange(BluetoothDevice device, int status, argument
42 * @param status Returns {@link BluetoothGatt#GATT_SUCCESS} if the service
46 public void onServiceAdded(int status, BluetoothGattService service) { argument
144 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the operation was successful
146 public void onNotificationSent(BluetoothDevice device, int status) { argument
/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_text_StaticLayout.cpp35 UErrorCode status = U_ZERO_ERROR; local
36 mUText = utext_openUChars(NULL, mChars.get(), length, &status);
41 mBreakIterator->setText(mUText, status);
70 UErrorCode status = U_ZERO_ERROR; local
71 BreakIterator* it = BreakIterator::createLineInstance(icuLocale.locale(), status);
72 if (!U_SUCCESS(status) || it == NULL) {
H A Dandroid_view_PointerIcon.cpp100 status_t status = android_view_PointerIcon_load(env, pointerIconObj, local
103 return status;
/frameworks/base/libs/hwui/
H A DPixelBuffer.cpp119 GLenum status = GL_NO_ERROR; local
120 while ((status = glGetError()) != GL_NO_ERROR) {
121 ALOGE("Could not map GPU pixel buffer: 0x%x", status);
135 GLboolean status = glUnmapBuffer(GL_PIXEL_UNPACK_BUFFER); local
136 if (status == GL_FALSE) {
/frameworks/base/location/java/android/location/
H A DGpsMeasurementsEvent.java39 * The system does not support tracking of GPS Measurements. This status will not change in the
74 * Returns the latest status of the GPS Measurements sub-system.
76 void onStatusChanged(int status); argument
/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.
/frameworks/base/tools/aapt/
H A DWorkQueue.cpp48 status_t status = workThread->run("WorkQueue::WorkThread"); local
49 if (status) {
50 return 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/input/
H A DVirtualKeyMap.cpp53 status_t status = Tokenizer::open(filename, &tokenizer); local
54 if (status) {
55 ALOGE("Error %d opening virtual key map file %s.", status, filename.string());
60 status = NO_MEMORY;
66 status = parser.parse();
73 if (status) {
81 return status;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgram.cpp39 GLint status; local
40 glGetProgramiv(programId, GL_LINK_STATUS, &status);
41 if (status != GL_TRUE) {
101 GLint status; local
102 glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
103 if (status != GL_TRUE) {
/frameworks/rs/driver/runtime/
H A Drs_core.c107 uint32_t prev, status; local
111 status = __sync_val_compare_and_swap(ptr, prev, n);
112 } while (status != prev);
117 int32_t prev, status; local
121 status = __sync_val_compare_and_swap(ptr, prev, n);
122 } while (status != prev);
127 uint32_t prev, status; local
131 status = __sync_val_compare_and_swap(ptr, prev, n);
132 } while (status != prev);
137 int32_t prev, status; local
[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/camera/
H A DCameraBase.cpp101 status_t status = NO_ERROR; local
106 status = (cs.get()->*fnConnectService)(cl, cameraId, clientPackageName, clientUid,
109 if (status == OK && c->mCamera != 0) {
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DJsonWebKey.cpp200 int status = jsmn_parse(&parser, jsonObject.string(), local
202 if (status < 0) {
203 ALOGE("Parser returns error code=%d", status);
250 int status = jsmn_parse(&parser, jsonWebKeySet.string(), local
252 if (status < 0) {
253 ALOGE("Parser returns error code=%d", status);
/frameworks/av/media/libeffects/proxy/
H A DEffectProxy.cpp208 int status = 0; local
215 status = pContext->aeli[SUB_FX_HOST]->create_effect(
219 if (status != NO_ERROR || (pContext->eHandle[SUB_FX_HOST] == NULL)) {
221 return status;
226 status = pContext->aeli[SUB_FX_OFFLOAD]->create_effect(
230 if (status != NO_ERROR || (pContext->eHandle[SUB_FX_OFFLOAD] == NULL)) {
318 subStatus[i] = &status;
331 return status;
/frameworks/av/media/libmedia/
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) {
166 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp); local
167 reply->writeInt32(status);

Completed in 5877 milliseconds

1234567891011>>