Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:status

32   status_t status = parcel->writeParcelable((UUID)uuid_);
33 if (status != OK) return status;
35 status = parcel->writeInt32(handle_);
36 if (status != OK) return status;
38 status = parcel->writeBool(primary_);
39 return status;
44 status_t status = parcel->readParcelable(&uuid);
45 if (status != OK) return status;
49 status = parcel->readInt32(&tmp);
50 if (status != OK) return status;
53 status = parcel->readBool(&primary_);
54 return status;