/system/core/base/ |
D | cmsg_test.cpp | 74 unique_fd received; in TEST_P() local 75 ASSERT_EQ(1, ReceiveFileDescriptors(recv.get(), buf, 2, &received)); in TEST_P() 77 ASSERT_NE(-1, received.get()); in TEST_P() 79 ASSERT_EQ(ino1, GetInode(received.get())); in TEST_P() 108 unique_fd received; in TEST_P() local 109 ASSERT_EQ(-1, ReceiveFileDescriptors(recv.get(), buf, 1, &received)); in TEST_P() 111 ASSERT_EQ(-1, received.get()); in TEST_P() 121 unique_fd received; in TEST_P() local 122 ASSERT_EQ(1, ReceiveFileDescriptors(recv.get(), buf, 1, &received)); in TEST_P() 123 ASSERT_EQ(ino1, GetInode(received.get())); in TEST_P() [all …]
|
/system/bt/osi/test/ |
D | properties_test.cc | 38 char received[PROPERTY_VALUE_MAX]; in TEST_F() local 39 osi_property_get("very.useful.set.test", received, NULL); in TEST_F() 40 ASSERT_STREQ(received, "nothing_interesting"); in TEST_F() 54 int32_t received = osi_property_get_int32("very.useful.set.test", 84); in TEST_F() local 55 ASSERT_EQ(received, 42); in TEST_F()
|
/system/chre/apps/gnss_world/ |
D | gnss_world.cc | 188 bool *received = nullptr; in handleGnssAsyncResult() local 194 received = &gLocationAsyncResultReceived; in handleGnssAsyncResult() 200 received = &gMeasurementAsyncResultReceived; in handleGnssAsyncResult() 209 if (received != nullptr) { in handleGnssAsyncResult() 210 *received = true; in handleGnssAsyncResult()
|
/system/bt/vendor_libs/test_vendor_lib/test/ |
D | link_layer_socket_device_test.cc | 94 …id ValidatePacket(size_t index, bool at_server, std::shared_ptr<LinkLayerPacketBuilder> received) { in ValidatePacket() argument 98 received->Serialize(it); in ValidatePacket() 135 …his, index](std::shared_ptr<LinkLayerPacketBuilder> received) { ValidatePacket(index, true, receiv… in SetUp() argument 177 …his, index](std::shared_ptr<LinkLayerPacketBuilder> received) { ValidatePacket(index, false, recei… in CreateConnection() argument
|
D | l2cap_test.cc | 56 void compare_packets(shared_ptr<HciPacket> expected, shared_ptr<HciPacket> received) { in compare_packets() argument 60 Iterator received_begin = received->get_begin(); in compare_packets() 61 Iterator received_end = received->get_end(); in compare_packets()
|
/system/bt/vendor_libs/test_vendor_lib/packets/link_layer/ |
D | link_layer_packet_builder.cc | 144 LinkLayerPacketView received = LinkLayerPacketView::Create(raw_packet); in ReWrap() local 145 Link::PacketType packet_type = received.GetType(); in ReWrap() 146 Address source = received.GetSourceAddress(); in ReWrap() 147 Address dest = received.GetDestinationAddress(); in ReWrap() 148 PacketView<true> payload = received.GetPayload(); in ReWrap()
|
/system/core/fastboot/ |
D | socket_test.cpp | 71 std::string received(message.length(), '\0'); in ReceiveString() local 72 ssize_t bytes = sock->ReceiveAll(&received[0], received.length(), kTestTimeoutMs); in ReceiveString() 73 return static_cast<size_t>(bytes) == received.length() && received == message; in ReceiveString()
|
/system/bt/vendor_libs/test_vendor_lib/scripts/ |
D | send_simple_commands.py | 131 received = self.receive_response() 132 received_bytes = bytearray(received)
|
/system/libhidl/transport/token/1.0/ |
D | ITokenManager.hal | 39 * @param token Token received from createToken 47 * @param token Token received from createToken
|
/system/sepolicy/prebuilts/api/26.0/private/ |
D | binderservicedomain.te | 13 # Receive and write to a pipe received over Binder from an app.
|
D | isolated_app.te | 13 # Access already open app data files received over Binder or local socket IPC.
|
/system/sepolicy/prebuilts/api/29.0/private/ |
D | binderservicedomain.te | 13 # Receive and write to a pipe received over Binder from an app.
|
/system/sepolicy/private/ |
D | binderservicedomain.te | 13 # Receive and write to a pipe received over Binder from an app.
|
/system/sepolicy/prebuilts/api/27.0/private/ |
D | binderservicedomain.te | 13 # Receive and write to a pipe received over Binder from an app.
|
D | isolated_app.te | 13 # Access already open app data files received over Binder or local socket IPC.
|
/system/sepolicy/prebuilts/api/28.0/private/ |
D | binderservicedomain.te | 13 # Receive and write to a pipe received over Binder from an app.
|
D | isolated_app.te | 13 # Access already open app data files received over Binder or local socket IPC.
|
/system/connectivity/wifilogd/tests/ |
D | os_unittest.cpp | 122 const Os::Timestamp received = os_->GetTimestamp(CLOCK_REALTIME); in TEST_F() local 123 EXPECT_EQ(kFakeSecs, received.secs); in TEST_F() 124 EXPECT_EQ(kFakeNsecs, received.nsecs); in TEST_F()
|
/system/core/adb/ |
D | SYNC.TXT | 48 When a sync response "DONE" is received the listing is done. 75 received is split up into chunks. The sync response id is "DATA" and length is
|
D | protocol.txt | 71 established. Until a CONNECT message is received no other messages may 72 be sent. Any messages received before a CONNECT message MUST be ignored. 74 If a CONNECT message is received with an unknown version or insufficiently 157 A WRITE message may not be sent until a READY message is received. 159 sent until another READY message has been received. Recipients of
|
/system/core/adb/daemon/ |
D | shell_service.cpp | 119 std::string received; in ReadAll() local 126 received.append(buffer, bytes); in ReadAll() 129 return received; in ReadAll()
|
/system/bt/service/doc/ |
D | IBluetoothGattServerCallback.txt | 85 * write until a call to onExecuteWriteRequest is received. 105 * write until a call to onExecuteWriteRequest is received.
|
/system/bt/btif/src/ |
D | btif_sock_rfc.cc | 956 ssize_t received; in bta_co_rfc_data_outgoing() local 957 OSI_NO_INTR(received = recv(slot->fd, buf, size, 0)); in bta_co_rfc_data_outgoing() 959 if (received != size) { in bta_co_rfc_data_outgoing()
|
/system/chre/platform/shared/idl/ |
D | host_messages.fbs | 105 /// issued. If a new request is received while a current request has 116 /// Once the LoadNanoappRepsonse for the last fragment is received
|
/system/sepolicy/tools/fc_sort/ |
D | NOTICE | 149 c) Accompany it with the information you received as to the offer 152 received the program in object code or executable form with such 176 However, parties who have received copies, or rights, from you under 306 You should have received a copy of the GNU General Public License
|