Searched defs:client (Results 1 - 25 of 41) sorted by relevance

12

/system/tools/aidl/tests/
H A Daidl_test_client_file_descriptors.h28 namespace client { namespace in namespace:android::aidl::tests
33 } // namespace client
H A Daidl_test_client_nullables.h28 namespace client { namespace in namespace:android::aidl::tests
32 } // namespace client
H A Daidl_test_client_parcelables.h28 namespace client { namespace in namespace:android::aidl::tests
33 } // namespace client
H A Daidl_test_client_primitives.h28 namespace client { namespace in namespace:android::aidl::tests
35 } // namespace client
H A Daidl_test_client_service_exceptions.h27 namespace client { namespace in namespace:android::aidl::tests
32 } // namespace client
H A Daidl_test_client_utf8_strings.h28 namespace client { namespace in namespace:android::aidl::tests
37 } // namespace client
H A Daidl_test_client.cpp52 namespace client { namespace in namespace:android::aidl::tests
67 } // namespace client
76 namespace client_tests = android::aidl::tests::client;
H A Daidl_test_client_service_exceptions.cpp30 namespace client { namespace in namespace:android::aidl::tests
46 } // namespace client
H A Daidl_test_client_nullables.cpp47 namespace client { namespace in namespace:android::aidl::tests
180 } // namespace client
H A Dtest_helpers.h29 namespace client { namespace in namespace:android::aidl::tests
75 } // namespace client
H A Daidl_test_client_parcelables.cpp40 namespace client { namespace in namespace:android::aidl::tests
148 } // namespace client
H A Daidl_test_client_primitives.cpp49 namespace client { namespace in namespace:android::aidl::tests
218 } // namespace client
H A Daidl_test_client_utf8_strings.cpp46 namespace client { namespace in namespace:android::aidl::tests
164 } // namespace client
/system/nativepower/example/
H A Dpower_example.cc43 brillo::FlagHelper::Init(argc, argv, "Example power-management client.");
49 android::PowerManagerClient client; local
50 CHECK(client.Init());
54 CHECK(client.Reboot(android::RebootReason::DEFAULT));
57 CHECK(client.ShutDown(android::ShutdownReason::DEFAULT));
60 CHECK(client.Suspend(base::SysInfo::Uptime(),
65 client.CreateWakeLock("power_example", "power"));
/system/nativepower/client/
H A Dwake_lock.cc29 PowerManagerClient* client)
33 client_(client) {
27 WakeLock(const std::string& tag, const std::string& package, PowerManagerClient* client) argument
/system/connectivity/shill/
H A Darp_client_test_helper.cc27 ArpClientTestHelper::ArpClientTestHelper(MockArpClient* client) argument
28 : client_(client) {}
/system/core/libcutils/tests/
H A Dsockets_test.cpp32 static void TestConnectedSockets(cutils_socket_t server, cutils_socket_t client, argument
35 ASSERT_NE(INVALID_SOCKET, client);
41 // Send client -> server first to get the UDP client's address.
42 ASSERT_EQ(3, send(client, "foo", 3, 0));
51 // Now send server -> client.
58 EXPECT_EQ(3, recv(client, buffer, sizeof(buffer), 0));
66 EXPECT_EQ(11, socket_send_buffers(client, socket_buffers, 3));
71 EXPECT_EQ(0, socket_close(client));
117 cutils_socket_t client local
128 cutils_socket_t client = socket_network_client( local
139 cutils_socket_t client = socket_network_client( local
150 cutils_socket_t client = socket_network_client( local
173 cutils_socket_t client = socket_network_client( local
[all...]
/system/core/logd/
H A DFlushCommand.cpp45 // runSocketCommand is called once for every open client on the
47 // client tracking and log region locks LastLogTimes list of
48 // LogTimeEntrys, and spawn a transitory per-client thread to
54 void FlushCommand::runSocketCommand(SocketClient *client) { argument
62 if (entry->mClient == client) {
84 entry = new LogTimeEntry(mReader, client, mNonBlock, mTail, mLogMask,
89 client->incRef();
91 // release client and entry reference counts once done
96 bool FlushCommand::hasReadLogs(SocketClient *client) { argument
97 return clientHasLogCredentials(client);
100 clientHasSecurityCredentials(SocketClient *client) argument
104 hasSecurityLogs(SocketClient *client) argument
[all...]
/system/update_engine/client_library/
H A Dclient_binder.h35 #include "update_engine/client_library/include/update_engine/client.h"
89 StatusUpdateCallback(BinderUpdateEngineClient* client) : client_(client) {} argument
/system/webservd/test-client/
H A Dmain.cc70 const char PingRequestHandler::kUrl[] = "/webservd-test-client/ping";
117 WebservTestClient client; local
118 return client.Run();
/system/bt/service/test/
H A Dgatt_client_unittest.cpp103 std::unique_ptr<GattClient> client; local
110 client = std::unique_ptr<GattClient>(
151 ASSERT_TRUE(client.get() != nullptr); // Assert to terminate in case of error
153 EXPECT_EQ(client_id0, client->GetInstanceId());
154 EXPECT_EQ(uuid0, client->GetAppIdentifier());
157 // The client should unregister itself when deleted.
161 client.reset();
171 ASSERT_TRUE(client.get() == nullptr); // Assert to terminate in case of error
/system/core/fastboot/
H A Dsocket_test.cpp34 // Creates connected sockets |server| and |client|. Returns true on success.
36 std::unique_ptr<Socket>* client,
44 *client = Socket::NewClient(protocol, hostname, (*server)->GetLocalPort(), nullptr);
45 if (*client == nullptr) {
46 ADD_FAILURE() << "Failed to create client.";
50 // TCP passes the client off to a new socket.
54 ADD_FAILURE() << "Failed to accept client connection.";
76 // Tests sending packets client -> server, then server -> client.
78 std::unique_ptr<Socket> server, client; local
35 MakeConnectedSockets(Socket::Protocol protocol, std::unique_ptr<Socket>* server, std::unique_ptr<Socket>* client, const std::string hostname = �) argument
92 std::unique_ptr<Socket> server, client; local
113 std::unique_ptr<Socket> server, client; local
138 std::unique_ptr<Socket> server, client; local
158 std::unique_ptr<Socket> server, client; local
[all...]
/system/tpm/trunks/
H A Dtrunks_binder_service.cc79 const android::sp<android::trunks::ITrunksClient>& client) {
82 GetWeakPtr(), client);
94 const android::sp<android::trunks::ITrunksClient>& client,
98 android::binder::Status status = client->OnCommandResponse(binder_response);
100 LOG(ERROR) << "TrunksBinderService: Failed to send response to client: "
77 SendCommand( const std::vector<uint8_t>& command, const android::sp<android::trunks::ITrunksClient>& client) argument
93 OnResponse( const android::sp<android::trunks::ITrunksClient>& client, const std::string& response) argument
/system/weaved/buffet/
H A Dbinder_weave_service.cc34 android::sp<android::weave::IWeaveClient> client)
35 : device_{device}, client_{client} {}
32 BinderWeaveService( weave::Device* device, android::sp<android::weave::IWeaveClient> client) argument
/system/bt/service/
H A Dgatt_client.cpp35 // Automatically unregister the client.
36 VLOG(1) << "GattClient unregistering client: " << client_id_;
68 LOG(ERROR) << "GATT client with given UUID already registered - "
100 // No need to construct a client if the call wasn't successful.
101 std::unique_ptr<GattClient> client; local
103 client.reset(new GattClient(uuid, client_id));
106 iter->second(result, uuid, std::move(client));

Completed in 302 milliseconds

12