Searched defs:status (Results 101 - 125 of 596) sorted by relevance

1234567891011>>

/frameworks/base/libs/androidfw/
H A DDisplayEventDispatcher.cpp45 ALOGW("Failed to initialize display event receiver, status=%d", result);
78 status_t status = mReceiver.requestNextVsync(); local
79 if (status) {
80 ALOGW("Failed to request next vsync, status=%d", status);
81 return status;
144 ALOGW("Failed to get events from display event dispatcher, status=%d", status_t(n));
/frameworks/base/libs/hwui/
H A DPixelBuffer.cpp127 GLboolean status = glUnmapBuffer(GL_PIXEL_UNPACK_BUFFER); local
128 if (status == GL_FALSE) {
/frameworks/base/location/java/android/location/
H A DGnssMeasurementsEvent.java48 * The status of the GNSS measurements event.
58 * <p>This status will not change in the future.
80 * Reports the latest status of the GNSS Measurements sub-system.
82 public void onStatusChanged(@GnssMeasurementsStatus int status) {} argument
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/packages/Osu/src/com/android/hotspot2/
H A DAppBridge.java36 public void showStatus(OSUOperationStatus status, String spName, String message, argument
40 intent.putExtra(PROV_SUCCESS, status == OSUOperationStatus.ProvisioningSuccess);
/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/tools/bit/
H A Dadb.cpp253 TestStatus status;
254 err = read_sized_proto(fd, &status);
258 callbacks->OnTestStatus(status);
260 SessionStatus status; local
261 err = read_sized_proto(fd, &status);
265 callbacks->OnSessionStatus(status);
322 int status;
323 waitpid(pid, &status, 0);
327 if (WIFEXITED(status)) {
328 return WEXITSTATUS(status);
[all...]
/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/hardware/interfaces/displayservice/1.0/vts/functional/
H A DVtsFwkDisplayServiceV1_0TargetTest.cpp167 int status = RUN_ALL_TESTS(); local
168 ALOGE("Test status = %d", status);
169 return status;
/frameworks/native/cmds/surfacereplayer/replayer/
H A DReplayer.cpp108 status_t status = loadSurfaceComposerClient(); local
110 if (status != NO_ERROR) {
111 ALOGE("Couldn't create SurfaceComposerClient (%d)", status);
112 return status;
144 status = dispatchEvent(mIncrementIndex + mNumThreads);
146 if (status != NO_ERROR) {
148 return status;
158 return status;
163 status_t status = dispatchEvent(i); local
165 if (status !
[all...]
/frameworks/native/include/binder/
H A DStatus.h34 // status_t status;
36 // if ((status = data.writeInterfaceToken(interface_descriptor)) != OK ||
37 // (status = data.writeInt32(function_input)) != OK) {
40 // if ((status = remote()->transact(transaction, data, &reply)) != OK) {
43 // if ((status = remote_exception.readFromParcel(reply)) != OK) {
98 static Status fromStatusT(status_t status);
104 Status(const Status& status) = default; member in class:android::binder::final
105 Status(Status&& status) = default; member in class:android::binder::final
106 Status& operator=(const Status& status) = default; member in class:android::binder::final
117 // Setting a |status| !
[all...]
/frameworks/native/libs/binder/
H A DStatus.cpp54 Status Status::fromStatusT(status_t status) { argument
56 ret.setFromStatusT(status);
70 status_t status = parcel.readInt32(&mException); local
71 if (status != OK) {
72 setFromStatusT(status);
73 return status;
81 status = parcel.readInt32(&header_size);
82 if (status != OK) {
83 setFromStatusT(status);
84 return status;
133 status_t status = parcel->writeInt32(mException); local
160 setFromStatusT(status_t status) argument
[all...]
/frameworks/native/libs/binder/include/binder/
H A DStatus.h34 // status_t status;
36 // if ((status = data.writeInterfaceToken(interface_descriptor)) != OK ||
37 // (status = data.writeInt32(function_input)) != OK) {
40 // if ((status = remote()->transact(transaction, data, &reply)) != OK) {
43 // if ((status = remote_exception.readFromParcel(reply)) != OK) {
98 static Status fromStatusT(status_t status);
104 Status(const Status& status) = default; member in class:android::binder::final
105 Status(Status&& status) = default; member in class:android::binder::final
106 Status& operator=(const Status& status) = default; member in class:android::binder::final
117 // Setting a |status| !
[all...]
/frameworks/native/libs/gui/tests/
H A DStreamSplitter_test.cpp68 status_t status = StreamSplitter::createSplitter(inputConsumer, &splitter); local
69 ASSERT_EQ(OK, status);
138 status_t status = StreamSplitter::createSplitter(inputConsumer, &splitter); local
139 ASSERT_EQ(OK, status);
207 status_t status = StreamSplitter::createSplitter(inputConsumer, &splitter); local
208 ASSERT_EQ(OK, status);
/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/libs/vr/libdvr/
H A Ddvr_surface.cpp87 auto status = Surface::CreateSurface(surface_attributes); local
88 if (!status) {
90 status.GetErrorMessage().c_str());
91 return -status.error();
94 *out_surface = new DvrSurface{status.take()};
124 auto status = surface->surface->SetAttributes(surface_attributes); local
125 if (!status) {
127 status.GetErrorMessage().c_str());
128 return -status.error();
147 auto status local
172 auto status = client->GetNamedBuffer(name); local
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dstatus.h60 // Change the value/error code of the status object directly.
82 // Returns true if the status object contains valid value for type T.
110 // Status<void> status = bar();
111 // if(!status)
112 // return status.error_status();
118 // The message is the same as the string returned by strerror(status.error()).
133 // Specialization for status containing no other value but the error code.
169 inline int ReturnStatusOrError(const Status<void>& status) { argument
170 return status ? 0 : -status
173 ReturnStatusOrError(const Status<int>& status) argument
[all...]
/frameworks/native/libs/vr/libpdx_uds/
H A Dchannel_event_set.cpp97 Status<int> status; local
99 status.SetError(errno);
101 status.GetErrorMessage().c_str());
102 return status;
109 status.SetValue(mask_out);
110 return status;
H A Dclient_channel_factory.cpp59 Status<void> status; local
92 status = WaitForEndpoint(endpoint_path_, timeout);
93 if (!status)
94 return ErrorStatus(status.error());
127 status = ReceiveData(socket_.Borrow(), &connection_info);
128 if (!status)
129 return status.error_status();
142 status = SendData(socket_.Borrow(), request);
143 if (!status)
144 return status
[all...]
H A Dclient_channel_tests.cpp73 auto status = InvokeRemoteMethod<TestProtocol::Sum>(data); local
74 return status ? status.get() : -1;
113 auto status = factory->Connect(android::pdx::Client::kInfiniteTimeout); variable
114 ASSERT_TRUE(status); variable
115 client_ = TestClient::Create(status.take());
/frameworks/native/libs/vr/libvrflinger/
H A Ddisplay_manager_service.cpp26 auto status = service_->ModifyChannelEvents(channel_id_, pending ? 0 : POLLIN, local
28 ALOGE_IF(!status,
31 status.GetErrorMessage().c_str());
122 auto status = queue->CreateConsumerQueueHandle();
124 !status,
127 queue->id(), status.GetErrorMessage().c_str());
129 return status;
/frameworks/native/libs/vr/libvrsensor/
H A Dsensor_client.cpp24 auto status = trans.Send<int>(DVR_SENSOR_START, &sensor_type_, local
26 ALOGE_IF(!status, "startSensor() failed because: %s\n",
27 status.GetErrorMessage().c_str());
28 return ReturnStatusOrError(status);
33 auto status = trans.Send<int>(DVR_SENSOR_STOP); local
34 ALOGE_IF(!status, "stopSensor() failed because: %s\n",
35 status.GetErrorMessage().c_str());
36 return ReturnStatusOrError(status);
46 auto status = trans.SendVector<int>(DVR_SENSOR_POLL, nullptr, rvec); local
47 ALOGE_IF(!status, "Senso
[all...]
/frameworks/native/services/surfaceflinger/
H A DGpuService.cpp39 status_t status; local
52 if ((status = data.readNullableStrongBinder(&unusedCallback)) != OK)
53 return status;
54 if ((status = data.readNullableStrongBinder(&resultReceiver)) != OK)
55 return status;
56 status = shellCommand(in, out, err, args);
58 resultReceiver->send(status);

Completed in 254 milliseconds

1234567891011>>