/external/chromium_org/chrome/test/pyautolib/ |
dom_mutation_observer.js | 171 window.domAutomationController.send("success"); 192 window.domAutomationController.send("success"); 216 window.domAutomationController.send( 220 window.domAutomationController.send("success"); 236 window.domAutomationController.send("success");
|
/external/jmdns/src/javax/jmdns/impl/tasks/ |
DNSTask.java | 90 this._jmDNSImpl.send(newOut); 122 this._jmDNSImpl.send(newOut); 153 this._jmDNSImpl.send(newOut); 183 this._jmDNSImpl.send(newOut); 215 this._jmDNSImpl.send(newOut);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Standard_Suite.py | 34 _reply, _arguments, _attributes = self.send(_code, _subcode, 62 _reply, _arguments, _attributes = self.send(_code, _subcode, 88 _reply, _arguments, _attributes = self.send(_code, _subcode, 114 _reply, _arguments, _attributes = self.send(_code, _subcode, 134 _reply, _arguments, _attributes = self.send(_code, _subcode, 162 _reply, _arguments, _attributes = self.send(_code, _subcode, 188 _reply, _arguments, _attributes = self.send(_code, _subcode, 209 _reply, _arguments, _attributes = self.send(_code, _subcode, 230 _reply, _arguments, _attributes = self.send(_code, _subcode, 261 _reply, _arguments, _attributes = self.send(_code, _subcode [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
Standard_Suite.py | 35 _reply, _arguments, _attributes = self.send(_code, _subcode, 61 _reply, _arguments, _attributes = self.send(_code, _subcode, 81 _reply, _arguments, _attributes = self.send(_code, _subcode, 108 _reply, _arguments, _attributes = self.send(_code, _subcode, 129 _reply, _arguments, _attributes = self.send(_code, _subcode, 150 _reply, _arguments, _attributes = self.send(_code, _subcode, 181 _reply, _arguments, _attributes = self.send(_code, _subcode, 206 _reply, _arguments, _attributes = self.send(_code, _subcode, 226 _reply, _arguments, _attributes = self.send(_code, _subcode, 246 _reply, _arguments, _attributes = self.send(_code, _subcode [all...] |
Power_Suite.py | 27 _reply, _arguments, _attributes = self.send(_code, _subcode, 47 _reply, _arguments, _attributes = self.send(_code, _subcode, 67 _reply, _arguments, _attributes = self.send(_code, _subcode,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/ |
Standard_Suite.py | 35 _reply, _arguments, _attributes = self.send(_code, _subcode, 61 _reply, _arguments, _attributes = self.send(_code, _subcode, 81 _reply, _arguments, _attributes = self.send(_code, _subcode, 108 _reply, _arguments, _attributes = self.send(_code, _subcode, 129 _reply, _arguments, _attributes = self.send(_code, _subcode, 150 _reply, _arguments, _attributes = self.send(_code, _subcode, 181 _reply, _arguments, _attributes = self.send(_code, _subcode, 206 _reply, _arguments, _attributes = self.send(_code, _subcode, 226 _reply, _arguments, _attributes = self.send(_code, _subcode, 246 _reply, _arguments, _attributes = self.send(_code, _subcode [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
DatagramSocketTest.java | 71 ms.send(rdp); 133 ds.send(dp); 162 DatagramPacket send = new DatagramPacket(new byte[10], 10, localHost, local 164 ds.send(send); 189 ms.send(rdp); 218 // send a dgram to a server that is not running and then do a recv 224 send = new DatagramPacket(new byte[10], 10); 225 ds.send(send); 789 protected void send(DatagramPacket arg0) throws IOException { method in class:DatagramSocketTest.testDatagramSocketImpl 996 DatagramPacket send = new DatagramPacket(sendBytes, sendBytes.length); local 1068 DatagramPacket send = new DatagramPacket(new byte[10], 10); local 1097 DatagramPacket send = new DatagramPacket(sendBytes, sendBytes.length); local [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
WorkerThreadableWebSocketChannel.cpp | 87 WebSocketChannel::SendResult WorkerThreadableWebSocketChannel::send(const String& message) function in class:WebCore::WorkerThreadableWebSocketChannel 91 return m_bridge->send(message); 94 WebSocketChannel::SendResult WorkerThreadableWebSocketChannel::send(const ArrayBuffer& binaryData, unsigned byteOffset, unsigned byteLength) function in class:WebCore::WorkerThreadableWebSocketChannel 98 return m_bridge->send(binaryData, byteOffset, byteLength); 101 WebSocketChannel::SendResult WorkerThreadableWebSocketChannel::send(PassRefPtr<BlobDataHandle> blobData) function in class:WebCore::WorkerThreadableWebSocketChannel 105 return m_bridge->send(blobData); 199 void WorkerThreadableWebSocketChannel::Peer::send(const String& message) function in class:WebCore::WorkerThreadableWebSocketChannel::Peer 204 WebSocketChannel::SendResult sendRequestResult = m_mainWebSocketChannel->send(message); 208 void WorkerThreadableWebSocketChannel::Peer::send(const ArrayBuffer& binaryData) function in class:WebCore::WorkerThreadableWebSocketChannel::Peer 213 WebSocketChannel::SendResult sendRequestResult = m_mainWebSocketChannel->send(binaryData, 0, binaryData.byteLength()) 217 void WorkerThreadableWebSocketChannel::Peer::send(PassRefPtr<BlobDataHandle> blobData) function in class:WebCore::WorkerThreadableWebSocketChannel::Peer 492 WebSocketChannel::SendResult WorkerThreadableWebSocketChannel::Bridge::send(const String& message) function in class:WebCore::WorkerThreadableWebSocketChannel::Bridge 506 WebSocketChannel::SendResult WorkerThreadableWebSocketChannel::Bridge::send(const ArrayBuffer& binaryData, unsigned byteOffset, unsigned byteLength) function in class:WebCore::WorkerThreadableWebSocketChannel::Bridge 524 WebSocketChannel::SendResult WorkerThreadableWebSocketChannel::Bridge::send(PassRefPtr<BlobDataHandle> data) function in class:WebCore::WorkerThreadableWebSocketChannel::Bridge [all...] |
MainThreadWebSocketChannel.h | 70 bool send(const char* data, int length); 76 virtual WebSocketChannel::SendResult send(const String& message) OVERRIDE; 77 virtual WebSocketChannel::SendResult send(const ArrayBuffer&, unsigned byteOffset, unsigned byteLength) OVERRIDE; 78 virtual WebSocketChannel::SendResult send(PassRefPtr<BlobDataHandle>) OVERRIDE; 130 // It is allowed to send a Blob as a binary frame if hybi-10 protocol is in use. Sending a Blob
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
hybridvideoengine.cc | 191 bool HybridVideoMediaChannel::SetSend(bool send) { 192 if (send == sending()) { 197 active_channel_->SetSend(send); 201 if (ret || !send) { 205 engine_->OnSendChange1(channel1_.get(), send); 207 engine_->OnSendChange2(channel2_.get(), send); 214 sending_ = send;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
Finder_items.py | 27 _reply, _arguments, _attributes = self.send(_code, _subcode, 52 _reply, _arguments, _attributes = self.send(_code, _subcode, 72 _reply, _arguments, _attributes = self.send(_code, _subcode, 92 _reply, _arguments, _attributes = self.send(_code, _subcode, 112 _reply, _arguments, _attributes = self.send(_code, _subcode, 132 _reply, _arguments, _attributes = self.send(_code, _subcode, 159 _reply, _arguments, _attributes = self.send(_code, _subcode,
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
RIL.java | 371 // new send request. So when WAKE_LOCK_TIMEOUT occurs 622 send(rr); 632 send(rr); 639 // Send the last NITZ time if we have it 657 send(rr); 677 send(rr); 698 send(rr); 718 send(rr); 739 send(rr); 760 send(rr) 2214 send(RILRequest rr) { method in class:RIL [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
DefaultClient.java | 135 // Send our connection message with a generated ID until 150 // Set it true here so we can send some messages. 159 send(CH_RELIABLE, reg, false); method 161 // Send registration messages to any other configured 169 send(ch, reg, false); method 205 public void send( Message message ) method in class:DefaultClient 208 send(CH_RELIABLE, message, true); method 210 send(CH_UNRELIABLE, message, true); method 214 public void send( int channel, Message message ) method in class:DefaultClient 218 send( channel + CH_FIRST, message, true ) 221 protected void send( int channel, Message message, boolean waitForConnected ) method in class:DefaultClient 373 send( ch, reg, false ); method [all...] |
/frameworks/native/libs/binder/ |
BpBinder.cpp | 109 Parcel send, reply; local 112 INTERFACE_TRANSACTION, send, &reply); 137 Parcel send; local 139 status_t err = transact(PING_TRANSACTION, send, &reply); 147 Parcel send; local 149 send.writeFileDescriptor(fd); 151 send.writeInt32(numArgs); 153 send.writeString16(args[i]); 155 status_t err = transact(DUMP_TRANSACTION, send, &reply);
|
/external/smack/src/org/jivesoftware/smackx/ |
RosterExchangeManager.java | 40 * Manages Roster exchanges. A RosterExchangeManager provides a high level access to send 59 * @param con a Connection which is used to send and receive messages. 96 * @param roster the roster to send 99 public void send(Roster roster, String targetUserID) { method in class:RosterExchangeManager 100 // Create a new message to send the roster 106 // Send the message that contains the roster 113 * @param rosterEntry the roster entry to send 116 public void send(RosterEntry rosterEntry, String targetUserID) { method in class:RosterExchangeManager 117 // Create a new message to send the roster 124 // Send the message that contains the roste 135 public void send(RosterGroup rosterGroup, String targetUserID) { method in class:RosterExchangeManager [all...] |
/frameworks/base/core/java/android/app/ |
PendingIntent.java | 93 * {@link #send()} is called on it, it will be automatically 94 * canceled for you and any future attempt to send through it will fail. 126 * Exception thrown when trying to send through a PendingIntent that 143 * Callback interface for discovering when a send operation has 152 * Called when a send operation as completed. 156 * @param resultCode The final result code determined by the send. 216 * of the intent that can be supplied when the actual send happens. 247 * of the intent that can be supplied when the actual send happens. 321 * {@link #send(Context, int, Intent)} and {@link #FLAG_UPDATE_CURRENT}, etc. 339 * of the intent that can be supplied when the actual send happens 567 public void send() throws CanceledException { method in class:PendingIntent 568 send(null, 0, null, null, null, null); method 581 public void send(int code) throws CanceledException { method in class:PendingIntent 582 send(null, code, null, null, null, null); method 600 public void send(Context context, int code, Intent intent) method in class:PendingIntent 602 send(context, code, intent, null, null, null); method 621 public void send(int code, OnFinished onFinished, Handler handler) method in class:PendingIntent 623 send(null, code, null, onFinished, handler, null); method 657 public void send(Context context, int code, Intent intent, method in class:PendingIntent 659 send(context, code, intent, onFinished, handler, null); method 698 public void send(Context context, int code, Intent intent, method in class:PendingIntent [all...] |
/frameworks/native/opengl/libs/GLES_trace/src/ |
gltrace_transport.cpp | 110 int TCPStream::send(void *buf, size_t len) { function in class:android::gltrace::TCPStream 154 int n = mStream->send((void *)mStringBuffer.data(), mStringBuffer.size()); 166 int BufferedOutputStream::send(GLMessage *msg) { function in class:android::gltrace::BufferedOutputStream
|
/packages/apps/Nfc/src/com/android/nfc/ |
DeviceHost.java | 126 public boolean send(byte[] data); method in interface:DeviceHost.NfcDepEndpoint 148 public void send(byte[] data) throws IOException; method in interface:DeviceHost.LlcpSocket 174 public void send(int sap, byte[] data) throws IOException; method in interface:DeviceHost.LlcpConnectionlessSocket
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
findertools.py | 145 _reply, args, attrs = finder.send("core", "setd", args, attrs) 158 _reply, args, attrs = finder.send("core", "getd", args, attrs) 180 _reply, args, attrs = finder.send('core', 'getd', args, attrs) 199 _reply, args, attrs = finder.send('core', 'getd', args, attrs) 254 _reply, args, attrs = finder.send("core", "getd", args, attrs) 275 _reply, args, attrs = finder.send(_code, _subcode, args, attrs) 290 _reply, args, attrs = finder.send(_code, _subcode, args, attrs) 312 _reply, args, attrs = finder.send("core", "setd", args, attrs) 325 _reply, args, attrs = finder.send("core", "getd", args, attrs) 350 _reply, args, attrs = finder.send("core", "getd", args, attrs [all...] |
/cts/tests/src/android/os/cts/ |
MessengerService.java | 35 msg.replyTo.send(reply);
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
demo_user_login.js | 18 chrome.send('launchDemoUser'); 29 chrome.send('loginVisible', ['demo']);
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
gcm_custom_bindings.js | 15 'send', function(message, callback) { 36 throw new Error("No data to send.");
|
/external/chromium_org/chrome/test/functional/tracing/ |
tracer.js | 22 window.domAutomationController.send(shimId); 34 window.domAutomationController.send('');
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
SocketStreamHandle.h | 55 bool send(const char* data, int length);
|
SocketStreamHandleInternal.h | 57 int send(const char*, int);
|