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

1234567891011>>

/frameworks/wilhelm/src/itf/
H A DIAcousticEchoCancellation.c43 android::status_t status = thiz->mAECEffect->setEnabled((bool) thiz->mEnabled); local
44 result = android_fx_statusToResult(status);
H A DIAutomaticGainControl.c42 android::status_t status = thiz->mAGCEffect->setEnabled((bool) thiz->mEnabled); local
43 result = android_fx_statusToResult(status);
H A DINoiseSuppression.c40 android::status_t status = thiz->mNSEffect->setEnabled((bool) thiz->mEnabled); local
41 result = android_fx_statusToResult(status);
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.cpp125 status_t status = parseUrl(); local
127 if (OK != status) {
129 return status;
/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/
H A DMediaClock.cpp144 status_t status = local
146 if (status != OK) {
147 return status;
H A DStagefrightMediaScanner.cpp85 status_t status; local
88 status = mRetriever->setDataSource(NULL /* httpService */, path);
90 status = mRetriever->setDataSource(fd, 0, 0x7ffffffffffffffL);
94 if (status) {
101 status = client.setMimeType(value);
102 if (status) {
133 status = client.addStringTag(kKeyMap[i].tag, value);
134 if (status != OK) {
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dbitstream_io.cpp147 AVCEnc_Status status = AVCENC_SUCCESS; local
165 status = AVCBitstreamSaveWord(stream);
166 return status;
177 status = AVCBitstreamSaveWord(stream); /* save current word */
184 return status;
199 AVCEnc_Status status; local
210 status = AVCBitstreamSaveWord(stream);
211 return status;
231 AVCEnc_Status status; local
238 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.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/radio/
H A DIRadioService.cpp63 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
64 if (status == NO_ERROR) {
65 status = (status_t)reply.readInt32();
68 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
69 if (status == NO_ERROR) {
77 return status;
98 status_t status = remote()->transact(ATTACH, data, &reply); local
99 if (status != NO_ERROR) {
100 return status;
134 status_t status = listModules(properties, &numModules); local
164 status_t status = attach(handle, client, configPtr, withAudio, radio); local
[all...]
/frameworks/av/soundtrigger/
H A DISoundTrigger.cpp62 status_t status = remote()->transact(LOAD_SOUND_MODEL, data, &reply); local
63 if (status != NO_ERROR) {
64 return status;
66 status = (status_t)reply.readInt32();
67 if (status == NO_ERROR) {
70 return status;
78 status_t status = remote()->transact(UNLOAD_SOUND_MODEL, data, &reply); local
79 if (status == NO_ERROR) {
80 status = (status_t)reply.readInt32();
82 return status;
97 status_t status = remote()->transact(START_RECOGNITION, data, &reply); local
109 status_t status = remote()->transact(STOP_RECOGNITION, data, &reply); local
137 status_t status = loadSoundModel(modelMemory, &handle); local
148 status_t status = unloadSoundModel(handle); local
160 status_t status = startRecognition(handle, dataMemory); local
168 status_t status = stopRecognition(handle); local
[all...]
H A DISoundTriggerHwService.cpp63 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
64 if (status == NO_ERROR) {
65 status = (status_t)reply.readInt32();
68 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
69 if (status == NO_ERROR) {
77 return status;
88 status_t status = remote()->transact(ATTACH, data, &reply); local
89 if (status != NO_ERROR) {
90 return status;
104 status_t status = remote()->transact(SET_CAPTURE_STATE, data, &reply); local
136 status_t status = listModules(modules, &numModules); local
159 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/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/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/telephony/java/com/android/internal/telephony/
H A DCellNetworkScanResult.java32 * Possible status values.
47 public CellNetworkScanResult(int status, List<OperatorInfo> operators) { argument
48 mStatus = status;
69 * @return the status of the command.
104 sb.append(" status:").append(mStatus);
/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) {

Completed in 639 milliseconds

1234567891011>>