Searched defs:local (Results 1 - 10 of 10) sorted by relevance

/system/core/libunwindstack/tests/
H A DMemoryLocalTest.cpp33 MemoryLocal local; local
36 ASSERT_TRUE(local.ReadFully(reinterpret_cast<uint64_t>(src.data()), dst.data(), 1024));
43 ASSERT_TRUE(local.ReadFully(reinterpret_cast<uint64_t>(src.data()), dst.data(), 1024));
54 MemoryLocal local; local
57 ASSERT_FALSE(local.ReadFully(0, dst.data(), 1));
58 ASSERT_FALSE(local.ReadFully(0, dst.data(), 100));
62 MemoryLocal local; local
68 ASSERT_FALSE(local.ReadFully(reinterpret_cast<uint64_t>(&value), dst.data(), SIZE_MAX));
80 MemoryLocal local; local
83 ASSERT_EQ(1024U, local
99 MemoryLocal local; local
[all...]
H A DUnwindTest.cpp127 extern "C" void InnerFunction(bool local, bool trigger_invalid_call) { argument
128 if (local) {
147 extern "C" void MiddleFunction(bool local, bool trigger_invalid_call) { argument
148 InnerFunction(local, trigger_invalid_call);
151 extern "C" void OuterFunction(bool local, bool trigger_invalid_call) { argument
152 MiddleFunction(local, trigger_invalid_call);
160 TEST_F(UnwindTest, local) {
/system/netd/server/
H A DPppController.cpp51 int PppController::attachPppd(const char *tty, struct in_addr local, argument
80 char *l = strdup(inet_ntoa(local));
/system/core/adb/
H A Dtransport_local.cpp153 // Retry the disconnected local port for 60 times, and sleep 1 second between two retries.
392 D("transport: local %s init", debug_name);
444 int init_socket_transport(atransport* t, int s, int adb_port, int local) { argument
453 if (local) {
458 D("local transport for port %d already registered (%p)?", adb_port, existing_transport);
H A Dadb.cpp189 static void send_ready(unsigned local, unsigned remote, atransport *t) argument
194 p->msg.arg0 = local;
199 static void send_close(unsigned local, unsigned remote, atransport *t) argument
204 p->msg.arg0 = local;
400 case A_OPEN: /* OPEN(local-id, 0, "destination") */
414 case A_OKAY: /* READY(local-id, remote-id, "") */
424 /* Other READY messages must use the same local-id */
432 // have closed the local socket because of client disconnection. Then we need
439 case A_CLSE: /* CLOSE(local-id, remote-id, "") or CLOSE(0, remote-id, "") */
450 * other devices. To avoid this, only allow this if the local
[all...]
H A Dtransport.cpp70 D("remote local: read terminated (message)");
75 D("remote local: read overflow (data length = %" PRIu32 ")", packet->msg.data_length);
82 D("remote local: terminated (data)");
91 D("remote local: write terminated");
97 D("remote local: write terminated");
1047 int register_socket_transport(int s, const char* serial, int port, int local) { argument
1057 if (init_socket_transport(t, s, port, local) < 0) {
/system/tools/aidl/
H A Daidl_language.cpp196 AidlMember* local = member.release(); local
197 AidlMethod* method = local->AsMethod();
198 AidlIntConstant* int_constant = local->AsIntConstant();
199 AidlStringConstant* string_constant = local->AsStringConstant();
/system/core/liblog/
H A Dproperties.c613 struct cache2_property_size local = { local
635 property_size = do_cache2_property_size(&local);
/system/libhwbinder/
H A DParcel.cpp104 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
150 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
202 BHwBinder *local = binder->localBinder(); local
203 if (!local) {
216 int policy = local->getMinSchedulingPolicy();
217 int priority = local->getMinSchedulingPriority();
223 obj.binder = reinterpret_cast<uintptr_t>(local->getWeakRefs());
224 obj.cookie = reinterpret_cast<uintptr_t>(local);
244 IBinder *local = real->localBinder(); local
245 if (!local) {
[all...]
/system/sepolicy/
H A DAndroid.mk805 # m4 into a tmp file called file_contexts.local.tmp.
810 # 4. Concatenate file_contexts.local.tmp and file_contexts.device.tmp into
825 file_contexts.local.tmp := $(intermediates)/file_contexts.local.tmp
826 $(file_contexts.local.tmp): $(local_fcfiles_with_nl)
853 $(file_contexts.concat.tmp): $(file_contexts.local.tmp) $(file_contexts.device.sorted.tmp)
871 file_contexts.local.tmp :=

Completed in 3306 milliseconds