Home
last modified time | relevance | path

Searched refs:receive (Results 1 – 25 of 261) sorted by relevance

1234567891011

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DDatagramSocketTest.java69 ms.receive(rdp); in run()
165 DatagramPacket receive = new DatagramPacket(new byte[20], 20); in test_connectLjava_net_InetAddressI() local
167 ds.receive(receive); in test_connectLjava_net_InetAddressI()
169 assertTrue("Wrong size: " + receive.getLength(), in test_connectLjava_net_InetAddressI()
170 receive.getLength() == 10); in test_connectLjava_net_InetAddressI()
171 assertTrue("Wrong receiver", receive.getAddress().equals(localHost)); in test_connectLjava_net_InetAddressI()
187 ms.receive(rdp); in test_connectLjava_net_InetAddressI()
226 receive = new DatagramPacket(new byte[20], 20); in test_connectLjava_net_InetAddressI()
228 ds.receive(receive); in test_connectLjava_net_InetAddressI()
255 receive = new DatagramPacket(new byte[20], 20); in test_connectLjava_net_InetAddressI()
[all …]
DDatagramSocketImplTest.java121 protected void receive(DatagramPacket pack) throws IOException { in receive() method in MockDatagramSocketImpl
/external/dbus/bus/
Dpolicy.c64 rule->d.receive.message_type = DBUS_MESSAGE_TYPE_INVALID; in bus_policy_rule_new()
68 rule->d.receive.requested_reply = rule->allow; in bus_policy_rule_new()
106 dbus_free (rule->d.receive.path); in bus_policy_rule_unref()
107 dbus_free (rule->d.receive.interface); in bus_policy_rule_unref()
108 dbus_free (rule->d.receive.member); in bus_policy_rule_unref()
109 dbus_free (rule->d.receive.error); in bus_policy_rule_unref()
110 dbus_free (rule->d.receive.origin); in bus_policy_rule_unref()
822 rule->d.receive.message_type == DBUS_MESSAGE_TYPE_INVALID && in bus_client_policy_optimize()
823 rule->d.receive.path == NULL && in bus_client_policy_optimize()
824 rule->d.receive.interface == NULL && in bus_client_policy_optimize()
[all …]
Dconfig-parser.c1468 rule->d.receive.eavesdrop = (strcmp (eavesdrop, "true") == 0); in append_rule_from_element()
1471 rule->d.receive.requested_reply = (strcmp (receive_requested_reply, "true") == 0); in append_rule_from_element()
1473 rule->d.receive.message_type = message_type; in append_rule_from_element()
1474 rule->d.receive.path = _dbus_strdup (receive_path); in append_rule_from_element()
1475 rule->d.receive.interface = _dbus_strdup (receive_interface); in append_rule_from_element()
1476 rule->d.receive.member = _dbus_strdup (receive_member); in append_rule_from_element()
1477 rule->d.receive.error = _dbus_strdup (receive_error); in append_rule_from_element()
1478 rule->d.receive.origin = _dbus_strdup (receive_sender); in append_rule_from_element()
1480 if (receive_path && rule->d.receive.path == NULL) in append_rule_from_element()
1482 if (receive_interface && rule->d.receive.interface == NULL) in append_rule_from_element()
[all …]
/external/chromium/crypto/
Dsymmetric_key_win.cc113 BOOL ok = CryptAcquireContext(safe_provider.receive(), NULL, NULL, in GenerateAESKey()
125 safe_key.receive()); in GenerateAESKey()
182 BOOL ok = CryptAcquireContext(safe_provider.receive(), NULL, NULL, in GenerateHMACKey()
215 BOOL ok = CryptCreateHash(provider, CALG_HMAC, key, 0, safe_hash.receive()); in CreateHMACHash()
255 BOOL ok = CryptDuplicateHash(hash, NULL, 0, safe_hash.receive()); in ComputePBKDF2Block()
285 ok = CryptDuplicateHash(hash, NULL, 0, safe_hash.receive()); in ComputePBKDF2Block()
385 BOOL ok = CryptAcquireContext(provider.receive(), NULL, NULL, provider_type, in DeriveKeyFromPassword()
485 BOOL ok = CryptAcquireContext(provider.receive(), NULL, NULL, provider_type, in Import()
Dsignature_verifier_win.cc28 if (!CryptAcquireContext(provider_.receive(), NULL, NULL, in SignatureVerifier()
68 cert_public_key_info, public_key_.receive()); in VerifyInit()
106 ok = CryptCreateHash(provider_, hash_alg_id, 0, 0, hash_object_.receive()); in VerifyInit()
Dhmac_win.cc112 if (!CryptAcquireContext(plat_->provider_.receive(), NULL, NULL, in Init()
143 plat_->key_.receive())) { in Init()
179 hash.receive())) in Sign()
Drsa_private_key_win.cc35 result->key_.receive())) in Create()
106 CRYPT_EXPORTABLE, result->key_.receive())) in CreateFromPrivateKeyInfo()
131 return FALSE != CryptAcquireContext(provider_.receive(), NULL, NULL, in InitProvider()
Dsignature_creator_win.cc18 result->hash_object_.receive())) { in Create()
Dscoped_capi_types.h67 CAPIHandle* receive() { in receive() function
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
DDatagramChannelTest.java444 SocketAddress addr = channel1.receive(buf); in testConfigureBlocking_Read()
751 this.channel1.receive(null); in testReceive_UnconnectedNull()
769 this.channel1.receive(dst); in testReceive_UnconnectedReadonly()
785 assertNull(this.channel1.receive(dst)); in testReceive_UnconnectedBufEmpty()
796 assertNull(this.channel1.receive(dst)); in testReceive_UnconnectedBufZero()
810 assertNull(this.channel1.receive(dst)); in testReceive_UnconnectedBufNotEmpty()
824 assertNull(this.channel1.receive(dst)); in testReceive_UnconnectedBufFull()
838 assertNull(this.channel1.receive(dst)); in testReceive_UnconnectedClose()
856 this.channel1.receive(null); in testReceive_UnconnectedCloseNull()
876 this.channel1.receive(dst); in testReceive_UnconnectedCloseReadonly()
[all …]
DMockDatagramChannel.java49 public SocketAddress receive(ByteBuffer arg0) throws IOException { in receive() method in MockDatagramChannel
/external/chromium/base/
Dsha1_win.cc19 if (!CryptAcquireContext(provider.receive(), NULL, NULL, PROV_RSA_FULL, in SHA1HashString()
27 if (!CryptCreateHash(provider, CALG_SHA1, 0, 0, hash.receive())) { in SHA1HashString()
/external/qemu/
Dnet.h16 NetReceive *receive; member
58 NetReceive *receive,
142 NetReceive *receive,
/external/dbus/doc/
Dbusconfig.dtd44 receive CDATA #IMPLIED attribute
53 receive CDATA #IMPLIED attribute
/external/libnfc-nxp/src/
DphFriNfc_LlcpMac.c172 …if(LlcpMac->LlcpMacInterface.receive == NULL || NULL==psData || NULL==ReceiveLlcpMac_Cb || NULL==p… in phFriNfc_LlcpMac_Receive()
178 status = LlcpMac->LlcpMacInterface.receive(LlcpMac,psData,ReceiveLlcpMac_Cb,pContext); in phFriNfc_LlcpMac_Receive()
DphFriNfc_LlcpMac.h158 pphFriNfcLlpcMac_Receive_t receive; member
/external/chromium/net/http/
Ddes.cc175 if (!CryptAcquireContext(provider.receive(), NULL, NULL, PROV_RSA_FULL, in DESEncrypt()
197 sizeof key_blob, 0, 0, key.receive()); in DESEncrypt()
/external/chromium/net/base/
Dkeygen_handler_win.cc180 if (crypto::CryptAcquireContextLocked(key_container.provider_.receive(), in GenKeyAndSignChallenge()
200 (key_size_in_bits_ << 16) | CRYPT_EXPORTABLE, key.receive())) { in GenKeyAndSignChallenge()
/external/webkit/LayoutTests/fast/events/touch/
Dtouch-inside-iframe-expected.txt2 Test iframes receive touches correctly.
/external/webkit/Source/WebCore/platform/text/wince/
DTextCodecWinCE.h58 …virtual bool receive(const char* encoding, const wchar_t* friendlyName, unsigned int codePage) = 0;
/external/dbus/test/data/valid-config-files/system.d/
Dtest.conf15 <!-- Allow any connection to receive the message, but
/external/bluetooth/bluez/compat/
Dbnep.c298 receive: in bnep_create_connection()
319 goto receive; in bnep_create_connection()
/external/llvm/test/CodeGen/X86/
Dtailcall-ri64.ll4 ; TAILJMPri64 should not receive "callee-saved" registers beyond epilogue.
/external/chromium/chrome/browser/accessibility/
Daccessibility_mac_uitest.mm38 // CFRunLoop necessary to receive AX callbacks.
40 // The runloop stops only if we receive all expected notifications.

1234567891011