Home
last modified time | relevance | path

Searched refs:local (Results 1 – 25 of 61) sorted by relevance

123

/system/core/include/log/
Dlog_read.h100 log_time local(*this);
101 return local -= T;
106 log_time local(*this);
107 return local += T;
140 log_time local(*this);
141 return local -= T;
146 log_time local(*this);
147 return local += T;
/system/core/adb/
DSERVICES.TXT56 host:transport-local
77 host-local:<request>
99 <host-prefix>:forward:<local>;<remote>
100 Asks the ADB server to forward local connections from <local>
104 host-serial/host-usb/host-local/host prefixes as described previously
107 the format of <local> is one of:
110 local:<path> -> Unix local domain socket on <path>
115 local:<path> -> Unix local domain socket on device
118 or even any one of the local services described below.
120 <host-prefix>:forward:norebind:<local>;<remote>
[all …]
Dprotocol.txt50 The identifiers "local-id" and "remote-id" are always relative to the
99 --- OPEN(local-id, 0, "destination") -----------------------------------
102 identified by local-id that it wishes to connect to the named
103 destination in the message payload. The local-id may not be zero.
114 * "local-dgram:<identifier>"
115 * "local-stream:<identifier>"
116 * "shell" - local shell service
121 --- READY(local-id, remote-id, "") -------------------------------------
124 identified by local-id is ready for write messages and that it is
127 Neither the local-id nor the remote-id may be zero.
[all …]
Dtest_device.py669 self.device.push(local=tmp.name, remote=self.DEVICE_TEMP_FILE)
779 self.device.push(local=tmp_file.name, remote='/system/')
789 self.device.pull(remote=remote_file, local=tmp_write.name)
802 output = self.device.pull(remote=self.DEVICE_TEMP_FILE, local='x')
835 self.device.pull(remote=self.DEVICE_TEMP_DIR, local=host_dir)
870 self.device.pull(remote=self.DEVICE_TEMP_DIR, local=symlink)
903 self.device.pull(remote=self.DEVICE_TEMP_DIR, local=host_dir)
927 self.device.pull(remote=self.DEVICE_TEMP_DIR, local=dest_dir)
960 self.device.pull(remote=remote_symlink, local=host_dir)
981 self.device.pull(remote=remote_empty_path, local=host_dir)
Dtransport_local.cpp404 int init_socket_transport(atransport *t, int s, int adb_port, int local) in init_socket_transport() argument
419 if (local) { in init_socket_transport()
Dtransport.h167 int register_socket_transport(int s, const char* serial, int port, int local);
/system/connectivity/shill/
Dconnection.cc201 IPAddress local(properties.address_family); in UpdateFromIPConfig() local
202 if (!local.SetAddressFromString(properties.address)) { in UpdateFromIPConfig()
206 local.set_prefix(properties.subnet_prefix); in UpdateFromIPConfig()
212 broadcast = local.GetDefaultBroadcast(); in UpdateFromIPConfig()
228 if (!FixGatewayReachability(local, &peer, &gateway, trusted_ip)) { in UpdateFromIPConfig()
232 if (device_info_->HasOtherAddress(interface_index_, local)) { in UpdateFromIPConfig()
241 << " local=" << local.ToString() in UpdateFromIPConfig()
245 rtnl_handler_->AddInterfaceAddress(interface_index_, local, broadcast, peer); in UpdateFromIPConfig()
297 local_ = local; in UpdateFromIPConfig()
441 if (!local().IsValid()) { in GetSubnetName()
[all …]
Dconnection_unittest.cc170 void SetLocal(const IPAddress& local) { in SetLocal() argument
171 connection_->local_ = local; in SetLocal()
836 IPAddress local(IPAddress::kFamilyIPv4); in TEST_F() local
837 ASSERT_TRUE(local.SetAddressFromString(kLocal)); in TEST_F()
839 local.set_prefix(kPrefix); in TEST_F()
846 local, &peer, &gateway, trusted_ip)); in TEST_F()
847 EXPECT_EQ(kPrefix, local.prefix()); in TEST_F()
857 local, &peer, &gateway, trusted_ip)); in TEST_F()
859 EXPECT_EQ(kPrefix, local.prefix()); in TEST_F()
874 local, &peer, &gateway, trusted_ip)); in TEST_F()
[all …]
Dmock_connection.h47 MOCK_CONST_METHOD0(local, const IPAddress&());
Dconnection.h137 virtual const IPAddress& local() const { return local_; } in local() function
180 bool FixGatewayReachability(const IPAddress& local,
Dactive_link_monitor.cc250 if (!connection_->local().address().Equals( in ReceiveResponse()
329 ArpPacket request(connection_->local(), connection_->gateway(), in SendRequest()
Dconnection_diagnostics.cc557 ArpPacket request(connection_->local(), connection_->local(), in CheckIpCollision()
751 if (!connection_->local().address().Equals( in OnArpReplyReceived()
762 if (connection_->local().address().Equals( in OnArpReplyReceived()
/system/connectivity/apmanager/
Dhostapd_monitor.cc125 struct sockaddr_un local; in AttachToHostapd() local
126 local.sun_family = AF_UNIX; in AttachToHostapd()
127 snprintf(local.sun_path, sizeof(local.sun_path), "%s", local_path_.c_str()); in AttachToHostapd()
139 reinterpret_cast<struct sockaddr*>(&local), in AttachToHostapd()
140 sizeof(local)) < 0) { in AttachToHostapd()
/system/connectivity/shill/net/
Drtnl_handler.cc352 const IPAddress& local, in AddressRequest() argument
355 CHECK(local.family() == broadcast.family()); in AddressRequest()
356 CHECK(local.family() == peer.family()); in AddressRequest()
365 local.family()); in AddressRequest()
368 local.prefix(), in AddressRequest()
372 msg.SetAttribute(IFA_LOCAL, local.address()); in AddressRequest()
384 const IPAddress& local, in AddInterfaceAddress() argument
390 local, in AddInterfaceAddress()
396 const IPAddress& local) { in RemoveInterfaceAddress() argument
400 local, in RemoveInterfaceAddress()
[all …]
Dmock_rtnl_handler.h42 const IPAddress& local,
46 const IPAddress& local));
Drtnl_handler.h91 const IPAddress& local,
98 const IPAddress& local);
162 const IPAddress& local,
/system/connectivity/dhcp_client/
Ddhcpv4.cc196 struct sockaddr_ll local; in CreateRawSocket() local
197 memset(&local, 0, sizeof(local)); in CreateRawSocket()
198 local.sll_family = PF_PACKET; in CreateRawSocket()
199 local.sll_protocol = htons(ETHERTYPE_IP); in CreateRawSocket()
200 local.sll_ifindex = static_cast<int>(interface_index_); in CreateRawSocket()
203 reinterpret_cast<struct sockaddr*>(&local), in CreateRawSocket()
204 sizeof(local)) < 0) { in CreateRawSocket()
Ddhcp_client.gyp36 # We need this include dir because we include all the local code as
/system/netd/server/
DPppController.cpp51 int PppController::attachPppd(const char *tty, struct in_addr local, in attachPppd() argument
80 char *l = strdup(inet_ntoa(local)); in attachPppd()
DPppController.h34 int attachPppd(const char *tty, struct in_addr local,
/system/tools/aidl/
Daidl_language.cpp158 AidlMember* local = member.release(); in AidlInterface() local
159 AidlMethod* method = local->AsMethod(); in AidlInterface()
160 AidlConstant* constant = local->AsConstant(); in AidlInterface()
/system/bt/doc/
Dbtsnoop_net.md3 btsnoop_net exposes Bluetooth snoop logs over a local TCP socket which enables
/system/sepolicy/
Duncrypt.te13 # For debugging, allow /data/local/tmp access
Dplatform_app.te11 # Read from /data/local/tmp or /data/data/com.android.shell.
/system/tpm/tpm_manager/common/
Dlocal_data.proto20 // The format of persistent local TPM management data stored on the device.

123