Lines Matching refs:status

61         status_t status = remote()->transact(GET_CBLK, data, &reply);
62 if (status == NO_ERROR) {
75 status_t status = remote()->transact(START, data, &reply);
76 if (status == NO_ERROR) {
77 status = reply.readInt32();
79 ALOGW("start() error: %s", strerror(-status));
81 return status;
110 status_t status = remote()->transact(ATTACH_AUX_EFFECT, data, &reply);
111 if (status == NO_ERROR) {
112 status = reply.readInt32();
114 ALOGW("attachAuxEffect() error: %s", strerror(-status));
116 return status;
123 status_t status = remote()->transact(SET_PARAMETERS, data, &reply);
124 if (status == NO_ERROR) {
125 status = reply.readInt32();
127 return status;
133 status_t status = remote()->transact(GET_TIMESTAMP, data, &reply);
134 if (status == NO_ERROR) {
135 status = reply.readInt32();
136 if (status == NO_ERROR) {
142 return status;
157 status_t status = configuration.get() == nullptr
161 if (status != NO_ERROR) {
162 return VolumeShaper::Status(status);
165 status = operation.get() == nullptr
166 ? status = data.writeInt32(0)
169 if (status != NO_ERROR) {
170 return VolumeShaper::Status(status);
174 status = remote()->transact(APPLY_VOLUME_SHAPER, data, &reply)
177 return VolumeShaper::Status(status ?: remoteVolumeShaperStatus);
185 status_t status = remote()->transact(GET_VOLUME_SHAPER_STATE, data, &reply);
186 if (status != NO_ERROR) {
190 status = state->readFromParcel(&reply);
191 if (status != NO_ERROR) {
245 status_t status = getTimestamp(timestamp);
246 reply->writeInt32(status);
247 if (status == NO_ERROR) {
265 status_t status = data.readInt32(&present);
266 if (status == NO_ERROR && present != 0) {
268 status = configuration->readFromParcel(&data);
270 status = status ?: data.readInt32(&present);
271 if (status == NO_ERROR && present != 0) {
273 status = operation->readFromParcel(&data);
275 if (status == NO_ERROR) {
276 status = (status_t)applyVolumeShaper(configuration, operation);
278 reply->writeInt32(status);
284 status_t status = data.readInt32(&id);
285 if (status == NO_ERROR) {
288 status = state->writeToParcel(reply);