Searched refs:android (Results 201 - 225 of 1593) sorted by relevance

1234567891011>>

/system/core/libnativebridge/tests/
H A DPreInitializeNativeBridgeFail2_test.cpp27 #include <android/log.h>
31 namespace android { namespace
39 } // namespace android
/system/extras/perfprofd/
H A Dperfprofd.conf12 config_directory=/data/data/com.google.android.gms/files
/system/libhidl/transport/base/1.0/
H A Dtypes.hal17 package android.hidl.base@1.0;
/system/libhidl/transport/manager/1.0/
H A DIServiceNotification.hal17 package android.hidl.manager@1.0;
/system/libhidl/transport/memory/1.0/
H A DIMapper.hal17 package android.hidl.memory@1.0;
/system/tools/aidl/tests/
H A Dtest_data_ping_responder.cpp19 namespace android { namespace
24 const char kCanonicalName[] = "android.os.IPingResponder";
26 package android.os;
58 const char kGenInterfaceHeaderPath[] = "some/path/android/os/IPingResponder.h";
59 const char kGenClientHeaderPath[] = "some/path/android/os/BpPingResponder.h";
60 const char kGenServerHeaderPath[] = "some/path/android/os/BnPingResponder.h";
64 android/os/IPingResponder.aidl \
67 android/os/IPingResponder.aidl :
70 some/path/android/os/BpPingResponder.h \
71 some/path/android/o
[all...]
/system/tools/hidl/
H A DHidlTypeAssertion.h21 #include <android-base/macros.h>
23 namespace android { namespace
28 // on a type (assumed to be declared in namespace ::android::hardware).
44 } // namespace android
/system/tools/hidl/test/
H A DFooCallback.h4 #include <android/hardware/tests/foo/1.0/IFooCallback.h>
9 namespace android { namespace
16 using ::android::hardware::tests::foo::V1_0::IFooCallback;
17 using ::android::hardware::Return;
18 using ::android::hardware::Void;
19 using ::android::hardware::hidl_vec;
20 using ::android::hardware::hidl_string;
21 using ::android::sp;
25 // Methods from ::android::hardware::tests::foo::V1_0::IFooCallback follow.
44 } // namespace android
[all...]
/system/tpm/trunks/
H A Dtrunks_binder_service.h24 #include "android/trunks/BnTrunks.h"
53 class BinderServiceInternal : public android::trunks::BnTrunks {
59 android::binder::Status SendCommand(
61 const android::sp<android::trunks::ITrunksClient>& client) override;
62 android::binder::Status SendCommandAndWait(
67 void OnResponse(const android::sp<android::trunks::ITrunksClient>& client,
82 android::sp<BinderServiceInternal> binder_;
H A Dtrunks_binder_service.cc58 android::BinderWrapper::Create();
64 if (!android::BinderWrapper::Get()->RegisterService(
65 kTrunksServiceName, android::IInterface::asBinder(binder_))) {
77 android::binder::Status TrunksBinderService::BinderServiceInternal::SendCommand(
79 const android::sp<android::trunks::ITrunksClient>& client) {
87 return android::binder::Status::ok();
90 return android::binder::Status::ok();
94 const android::sp<android
[all...]
/system/core/base/
H A Dlogging_test.cpp17 #include "android-base/logging.h"
28 #include "android-base/file.h"
29 #include "android-base/stringprintf.h"
30 #include "android-base/test_utils.h"
88 if (android::base::kEnableDChecks) {
93 if (android::base::kEnableDChecks) {
98 if (android::base::kEnableDChecks) {
111 static_assert(android::base::severity < android::base::FATAL, "Bad input"); \
112 for (size_t i = static_cast<size_t>(android
[all...]
H A Dstringprintf_test.cpp17 #include "android-base/stringprintf.h"
25 EXPECT_EQ("00107e59", android::base::StringPrintf("%08zx", size));
26 EXPECT_EQ("0x00107e59", android::base::StringPrintf("0x%08zx", size));
31 android::base::StringAppendF(&s, "b");
37 android::base::StringPrintf("hello %s", "world");
45 std::string s(android::base::StringPrintf("%s", buf));
/system/connectivity/wificond/scanning/offload/
H A Doffload_service_utils.cpp18 #include <android-base/logging.h>
24 using ::android::hardware::wifi::offload::V1_0::IOffload;
26 namespace android { namespace
29 android::sp<IOffload> OffloadServiceUtils::GetOffloadService() {
33 android::sp<OffloadCallback> OffloadServiceUtils::GetOffloadCallback(
68 } // namespace android
H A Doffload_scan_manager.h19 #include <android/hardware/wifi/offload/1.0/IOffload.h>
27 namespace android { namespace in namespace:com
38 } // namespace android
41 namespace android { namespace
55 const std::vector<android::hardware::wifi::offload::V1_0::ScanResult>&
58 const android::hardware::wifi::offload::V1_0::OffloadStatus& status)
113 ::com::android::server::wifi::wificond::NativeScanStats* /* scanStats */);
118 std::vector<::com::android::server::wifi::wificond::NativeScanResult>*
123 const std::vector<android::hardware::wifi::offload::V1_0::ScanResult>&
126 const android
[all...]
/system/connectivity/wificond/tests/
H A Dscan_stats_unittest.cpp24 using ::com::android::server::wifi::wificond::NativeScanStats;
25 using namespace android::wificond::offload_hal_test_constants;
27 namespace android { namespace
42 EXPECT_EQ(::android::OK, scan_stats_in.writeToParcel(&parcel));
45 EXPECT_EQ(::android::OK, scan_stats_out.readFromParcel(&parcel));
50 } // namespace android
/system/libhidl/transport/include/hidl/
H A DServiceManagement.h23 namespace android { namespace
39 // e.x.: android.hardware.foo@1.0, IFoo, default
44 // e.x.: android.hardware.foo@1.0::IFoo, default
52 sp<::android::hidl::manager::V1_0::IServiceManager> defaultServiceManager();
53 sp<::android::hidl::manager::V1_1::IServiceManager> defaultServiceManager1_1();
54 sp<::android::hidl::manager::V1_0::IServiceManager> getPassthroughServiceManager();
55 sp<::android::hidl::manager::V1_1::IServiceManager> getPassthroughServiceManager1_1();
69 }; // namespace android
/system/netd/server/
H A DDumpWriter.cpp19 #include <android-base/stringprintf.h>
22 using android::base::StringAppendV;
23 using android::String16;
24 using android::Vector;
26 namespace android { namespace
71 } // namespace android
H A Dmain.cpp50 using android::status_t;
51 using android::sp;
52 using android::IPCThreadState;
53 using android::ProcessState;
54 using android::defaultServiceManager;
55 using android::net::CommandListener;
56 using android::net::DnsProxyListener;
57 using android::net::FwmarkServer;
58 using android::net::NetdHwService;
59 using android
[all...]
/system/core/debuggerd/
H A Ddebuggerd.cpp25 #include <android-base/file.h>
26 #include <android-base/logging.h>
27 #include <android-base/parseint.h>
28 #include <android-base/unique_fd.h>
33 using android::base::unique_fd;
51 if (!android::base::WriteFully(STDOUT_FILENO, buf, rc)) {
65 if (!android::base::ParseInt(argv[argc - 1], &pid, 1, std::numeric_limits<pid_t>::max())) {
74 android::procinfo::ProcessInfo proc_info;
75 if (!android::procinfo::GetProcessInfo(pid, &proc_info)) {
79 if (proc_info.state == android
[all...]
/system/hwservicemanager/
H A DHidlService.h6 #include <android/hidl/manager/1.1/IServiceManager.h>
10 namespace android { namespace
15 using ::android::hardware::hidl_vec;
16 using ::android::hardware::hidl_string;
17 using ::android::hardware::Return;
18 using ::android::hardware::Void;
19 using ::android::hidl::base::V1_0::IBase;
20 using ::android::hidl::manager::V1_0::IServiceNotification;
21 using ::android::hidl::manager::V1_1::IServiceManager;
22 using ::android
[all...]
H A DTokenManager.h4 #include <android/hidl/token/1.0/ITokenManager.h>
11 namespace android { namespace
17 using ::android::hidl::base::V1_0::IBase;
18 using ::android::hidl::token::V1_0::ITokenManager;
19 using ::android::hardware::hidl_array;
20 using ::android::hardware::hidl_string;
21 using ::android::hardware::hidl_vec;
22 using ::android::hardware::Return;
23 using ::android::hardware::Void;
24 using ::android
[all...]
/system/connectivity/wificond/
H A Dclient_interface_impl.h22 #include <android-base/macros.h>
27 #include "android/net/wifi/IClientInterface.h"
33 namespace android { namespace
67 android::wifi_system::InterfaceTool* if_tool,
68 android::wifi_system::SupplicantManager* supplicant_manager,
74 android::sp<android::net::wifi::IClientInterface> GetBinder() const;
82 const android::sp<ScannerImpl> GetScanner() { return scanner_; };
85 const ::android::sp<::android
[all...]
/system/core/healthd/
H A Dhealthd.cpp27 #include <android/hardware/health/1.0/IHealth.h>
28 #include <android/hardware/health/1.0/types.h>
31 using namespace android;
33 using IHealth = ::android::hardware::health::V1_0::IHealth;
34 using Result = ::android::hardware::health::V1_0::Result;
35 using HealthConfig = ::android::hardware::health::V1_0::HealthConfig;
36 using HealthInfo = ::android::hardware::health::V1_0::HealthInfo;
38 using ::android::hardware::health::V1_0::hal_conversion::convertToHealthConfig;
39 using ::android::hardware::health::V1_0::hal_conversion::convertFromHealthConfig;
40 using ::android
[all...]
/system/security/keystore/
H A Dkeystore_aidl_hidl_marshalling_utils.cpp26 hidl_vec<uint8_t> readKeymasterBlob(const android::Parcel& in, bool inPlace) {
38 android::status_t writeKeymasterBlob(const hidl_vec<uint8_t>& blob, android::Parcel* out) {
42 if (rc != ::android::OK) return rc;
44 if (!size) return ::android::OK;
49 NullOr<hidl_vec<uint8_t>> readBlobAsByteArray(const android::Parcel& in, bool inPlace) {
67 android::status_t writeBlobAsByteArray(const NullOr<const hidl_vec<uint8_t>&>& blob,
68 android::Parcel* out) {
76 if (rc != ::android::OK) return rc;
78 if (!size) return ::android
[all...]
/system/core/base/include/android-base/
H A Dlogging.h64 #include "android-base/macros.h"
66 namespace android { namespace
99 explicit LogdLogger(LogId default_log_id = android::base::MAIN);
158 using ::android::base::VERBOSE; \
159 using ::android::base::DEBUG; \
160 using ::android::base::INFO; \
161 using ::android::base::WARNING; \
162 using ::android::base::ERROR; \
163 using ::android::base::FATAL_WITHOUT_ABORT; \
164 using ::android
[all...]

Completed in 2150 milliseconds

1234567891011>>