Searched refs:code (Results 26 - 50 of 123) sorted by relevance

12345

/system/bt/embdrv/sbc/decoder/include/
H A Doi_osinterface.h66 * @param status Status code associated with the error event
71 * This function initializes the debug code handling.
97 * platform-specific code.
124 * @param code OI_MSG_CODE_* indicating setting the message type.
126 void OI_SetMsgCode(uint8_t code);
/system/core/include/sysutils/
H A DSocketListener.h44 void sendBroadcast(int code, const char *msg, bool addErrno);
/system/core/libpixelflinger/tests/arch-arm64/disassembler/
H A Darm64_diassembler_test.cpp8 * * Redistributions of source code must retain the above copyright
32 int arm64_disassemble(uint32_t code, char* instr);
36 uint32_t code; member in struct:test_table_entry_t
301 arm64_disassemble(test->code, instr);
307 "Actual : %s\n", test->code, test->instr, instr);
/system/core/libsysutils/include/sysutils/
H A DSocketListener.h44 void sendBroadcast(int code, const char *msg, bool addErrno);
/system/netd/server/
H A DNetlinkHandler.h40 void notify(int code, const char *format, ...);
H A Dndc.cpp166 int code; local
171 code = atoi(tmp);
175 if (code >= 200 && code < 600)
/system/update_engine/payload_consumer/
H A Dfilesystem_verifier_action.h35 // the error code will depend on whether the source slot hashes are provided and
85 // ActionProcessor we're done w/ |code| as passed in. |cancelled_| should be
87 void Cleanup(ErrorCode code);
H A Ddownload_action.cc303 ErrorCode code = local
305 if (code == ErrorCode::kSuccess && delta_performer_.get()) {
306 code = delta_performer_->VerifyPayload(install_plan_.payload_hash,
308 if (code != ErrorCode::kSuccess) {
318 if (code == ErrorCode::kSuccess && HasOutputPipe())
320 processor_->ActionComplete(this, code);
/system/libhwbinder/include/hwbinder/
H A DBinder.h33 virtual status_t transact( uint32_t code,
62 virtual status_t onTransact( uint32_t code,
H A DTextOutput.h84 inline TypeCode(uint32_t code);
176 inline TypeCode::TypeCode(uint32_t code) : mCode(code) { } argument
H A DIPCThreadState.h65 uint32_t code, const Parcel& data,
105 uint32_t code,
H A DIBinder.h55 virtual status_t transact( uint32_t code,
80 * INVALID_OPERATION code being returned and nothing happening.
/system/media/camera/docs/
H A DCameraDeviceInfo.mako37 * End generated code
H A DCaptureResultTest.mako37 * End generated code
/system/libhwbinder/
H A DIPCThreadState.cpp130 << "code=" << TypeCode(btd->code) << ", flags=" << (void*)(long)btd->flags << endl
142 uint32_t code = (uint32_t)*cmd++; local
143 size_t cmdIndex = code & 0xff;
144 if (code == BR_ERROR) {
148 out << "Unknown reply: " << code << endl;
153 switch (code) {
203 uint32_t code = (uint32_t)*cmd++; local
204 size_t cmdIndex = code & 0xff;
207 out << "Unknown command: " << code << end
553 transact(int32_t handle, uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
905 writeTransactionData(int32_t cmd, uint32_t binderFlags, int32_t handle, uint32_t code, const Parcel& data, status_t* statusBuffer) argument
[all...]
H A DBinder.cpp83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags, TransactCallback callback)
88 switch (code) {
90 err = onTransact(code, data, reply, flags,
170 uint32_t /*code*/, const Parcel& /*data*/, Parcel* /*reply*/, uint32_t /*flags*/,
82 transact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags, TransactCallback callback) argument
/system/core/libappfuse/tests/
H A DFuseAppLoopTest.cc36 uint32_t code; member in struct:android::fuse::__anon1514::CallbackRequest
56 requests.push_back({.code = FUSE_FSYNC, .inode = inode});
62 requests.push_back({.code = FUSE_WRITE, .inode = inode});
68 requests.push_back({.code = FUSE_READ, .inode = inode});
73 requests.push_back({.code = FUSE_OPEN, .inode = inode});
78 requests.push_back({.code = FUSE_RELEASE, .inode = inode});
101 size_t data_size, uint32_t code, size_t expected_out_size) {
102 request_.Reset(data_size, code, 1);
116 EXPECT_EQ(code, callback_.requests[0].code);
100 CheckCallback( size_t data_size, uint32_t code, size_t expected_out_size) argument
[all...]
/system/update_engine/
H A Dupdate_attempter.h97 ErrorCode code) override;
101 ErrorCode code) override;
143 void set_http_response_code(int code) { http_response_code_ = code; } argument
297 void CreatePendingErrorEvent(AbstractAction* action, ErrorCode code);
440 // HTTP server response code from the last HTTP request action.
H A Dupdate_attempter.cc100 // Turns a generic ErrorCode::kError to a generic error code specific
101 // to |action| (e.g., ErrorCode::kFilesystemVerifierError). If |code| is
102 // not ErrorCode::kError, or the action is not matched, returns |code|
105 ErrorCode code) {
106 if (code != ErrorCode::kError)
107 return code;
119 return code;
338 // code.).
556 // related code.
892 ErrorCode code) {
104 GetErrorCodeForAction(AbstractAction* action, ErrorCode code) argument
891 ProcessingDone(const ActionProcessor* processor, ErrorCode code) argument
984 ActionCompleted(ActionProcessor* processor, AbstractAction* action, ErrorCode code) argument
1273 CreatePendingErrorEvent(AbstractAction* action, ErrorCode code) argument
[all...]
H A Dupdate_attempter_android.h73 ErrorCode code) override;
77 ErrorCode code) override;
102 // Notifies an update request completed with the given error |code| to all
H A Dmetrics_utils.cc33 metrics::AttemptResult GetAttemptResult(ErrorCode code) { argument
35 static_cast<int>(code) & ~static_cast<int>(ErrorCode::kSpecialFlags));
127 LOG(ERROR) << "Unexpected error code " << base_code;
131 metrics::DownloadErrorCode GetDownloadErrorCode(ErrorCode code) { argument
133 static_cast<int>(code) & ~static_cast<int>(ErrorCode::kSpecialFlags));
144 // The code is using HTTP Status 0 for "Unable to get http
145 // response code."
148 LOG(WARNING) << "Unexpected HTTP status code " << http_status;
224 LOG(ERROR) << "Unexpected error code " << base_code;
/system/core/gatekeeperd/
H A DIGateKeeperService.h104 virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply,
H A Dgatekeeperd.cpp34 #include <keystore/keystore.h> // For error code
173 ret = static_cast<int>(rsp.code); // propagate errors
174 if (rsp.code >= GatekeeperStatusCode::STATUS_OK) {
183 } else if (rsp.code == GatekeeperStatusCode::ERROR_RETRY_TIMEOUT && rsp.timeout > 0) {
262 ret = static_cast<int>(rsp.code); // propagate errors
264 rsp.code >= GatekeeperStatusCode::STATUS_OK) {
269 *request_reenroll = (rsp.code == GatekeeperStatusCode::STATUS_REENROLL);
272 } else if (rsp.code == GatekeeperStatusCode::ERROR_RETRY_TIMEOUT &&
/system/core/storaged/include/
H A Dstoraged_service.h50 virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags = 0);
/system/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp72 virtual status_t onTransact(uint32_t code,
172 status_t AddIntsService::onTransact(uint32_t code, const Parcel &data, argument
190 switch (code) {
198 cerr << "server onTransact unknown code, code: " << code << endl;

Completed in 403 milliseconds

12345