HomeSort by relevance Sort by last modified time
    Searched refs:send (Results 351 - 375 of 1269) sorted by null

<<11121314151617181920>>

  /external/chromium-trace/catapult/telemetry/third_party/websocket-client/
websocket.py 280 create frame to send text, binary and other data.
282 data: data to send. This is string value(byte array).
290 # mask must be set if send data from client
295 format this object to string(byte array) to send data to server.
350 We can connect to the websocket server and send/recieve data.
356 >>> ws.send("Hello, Server")
549 def send(self, payload, opcode=ABNF.OPCODE_TEXT): member in class:WebSocket
551 Send the data as string.
557 opcode: operation code to send. Please see OPCODE_XXX.
565 logger.debug("send: " + repr(data)
806 def send(self, data, opcode=ABNF.OPCODE_TEXT): member in class:WebSocketApp
    [all...]
  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_win.cc 166 // Disable send buffering on the socket to improve CPU usage.
858 FLOWSPEC* send, FLOWSPEC* recv)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
rewrites.rb 13 grammar_module::Lexer.send( :include, ANTLR3::Test::CollectErrors )
14 grammar_module::Lexer.send( :include, ANTLR3::Test::CaptureOutput )
15 grammar_module::Parser.send( :include, ANTLR3::Test::CollectErrors )
16 grammar_module::Parser.send( :include, ANTLR3::Test::CaptureOutput )
21 r = parser.send( rule )
41 grammar_module::Lexer.send( :include, ANTLR3::Test::CollectErrors )
42 grammar_module::Lexer.send( :include, ANTLR3::Test::CaptureOutput )
43 grammar_module::Parser.send( :include, ANTLR3::Test::CollectErrors )
44 grammar_module::Parser.send( :include, ANTLR3::Test::CaptureOutput )
45 tree_grammar_module::TreeParser.send( :include, ANTLR3::Test::CollectErrors
    [all...]
  /external/toybox/toys/pending/
dhcpd.c 283 } send; member in struct:server_state_s
478 if (write(sigfd.wr, &ch, 1) != 1) dbg("can't send signal\n");
862 memcpy(&packet.dhcp6, &gstate.send.send_pkt6, sizeof(dhcp6_msg_t));
866 dbg("SEND : ipv6 socket failed\n");
877 dbg("SEND : bind failed\n");
899 if (result < 0) dbg("PACKET send error\n");
913 memcpy(&packet.dhcp, &gstate.send.send_pkt, sizeof(dhcp_msg_t));
916 dbg("SEND : socket failed\n");
927 dbg("SEND : bind failed\n");
931 padding = 308 - 1 - dhcp_opt_size(gstate.send.send_pkt.options)
    [all...]
  /external/valgrind/VEX/switchback/
test_ppc_jm1.c 358 myvprintf_str ( void(*send)(HChar), Int flags, Int width, HChar* str,
369 send(MAYBE_TOUPPER(str[i]));
376 send(MAYBE_TOUPPER(str[i]));
384 send(' ');
388 send(MAYBE_TOUPPER(str[i]));
392 send(' ');
407 myvprintf_int64 ( void(*send)(HChar), Int flags, Int base, Int width, ULong pL)
453 send(buf[i]);
458 send(' '); // Never pad with zeroes on RHS -- changes the value!
467 UInt vprintf_wrk ( void(*send)(HChar), const HChar *format, va_list vargs
    [all...]
  /frameworks/base/core/java/android/app/
EnterTransitionCoordinator.java 74 mResultReceiver.send(MSG_SET_REMOTE_RECEIVER, resultReceiverBundle);
206 mResultReceiver.send(MSG_SHARED_ELEMENT_DESTINATION, state);
216 mResultReceiver.send(MSG_SHARED_ELEMENT_DESTINATION, state);
303 mResultReceiver.send(MSG_CANCEL, null);
430 mResultReceiver.send(MSG_HIDE_SHARED_ELEMENTS, null);
579 send(MSG_EXIT_TRANSITION_COMPLETE, null); method
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asyncore.py 372 def send(self, data): member in class:dispatcher
374 result = self.socket.send(data)
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
546 def send(self, data): member in class:dispatcher_with_send
621 def send(self, *args): member in class:.file_wrapper
633 write = send
  /prebuilts/gdb/linux-x86/lib/python2.7/
asyncore.py 372 def send(self, data): member in class:dispatcher
374 result = self.socket.send(data)
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
546 def send(self, data): member in class:dispatcher_with_send
621 def send(self, *args): member in class:.file_wrapper
633 write = send
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 372 def send(self, data): member in class:dispatcher
374 result = self.socket.send(data)
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
546 def send(self, data): member in class:dispatcher_with_send
621 def send(self, *args): member in class:.file_wrapper
633 write = send
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 372 def send(self, data): member in class:dispatcher
374 result = self.socket.send(data)
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
546 def send(self, data): member in class:dispatcher_with_send
621 def send(self, *args): member in class:.file_wrapper
633 write = send
  /development/samples/BluetoothHDP/src/com/example/bluetooth/health/
BluetoothHDPActivity.java 209 mHealthService.send(msg);
311 mHealthService.send(Message.obtain(null, what, value, 0));
328 mHealthService.send(Message.obtain(null, what, mDevice));
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_java.cc 139 u64 *send = (u64*)MemToShadow(src + size); local
144 send = (u64*)MemToShadow(src) - 1;
147 for (; s != send; s += inc, d += inc) {
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketRTCClient.java 120 // Disconnect from room and send bye messages - runs on a local looper thread.
183 // Send local offer SDP to the other participant.
208 // Send local answer SDP to the other participant.
221 wsClient.send(json.toString());
226 // Send Ice candidate to the other participant.
249 wsClient.send(json.toString());
347 // Send SDP or ICE candidate to a room server.
377 httpConnection.send();
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_sender_audio.cc 56 // set audio packet size, used to determine when it's time to send a DTMF packet
94 // we dont want to allow send with a DTMF payloadtype
176 // Check if we have pending DTMFs to send
198 // A source MAY send events and coded audio packets for the same time
203 // it can be triggered more frequently than we want to send the
206 // not time to send yet
213 bool send = true; local
217 // Skip send packet at start, since we shouldn't use duration 0
218 send = false;
225 if (send) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 64 * Send the SMS status report to the dispatcher thread to process.
100 intent.send(mContext, Activity.RESULT_OK, fillIn);
132 sentIntent.send(SmsManager.RESULT_ERROR_GENERIC_FAILURE);
165 sentIntent.send(SmsManager.RESULT_ERROR_GENERIC_FAILURE);
  /hardware/bsp/intel/peripheral/libupm/src/lcd/
lcm1602.cxx 361 return send(cmd, 0);
366 return send(cmd, LCD_RS); // 1
376 Lcm1602::send(uint8_t value, int mode) function in class:Lcm1602
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/scheduling/
TaskSchedulerService.java 134 mMessageSender.send(schedulerMessage);
301 mMessageSender.send(message);
353 public void send(Message message) { method in class:TaskSchedulerService.MessageSender
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
managers.py 99 Send a message to manager using connection `c` and return response
101 c.send((id, methodname, args, kwds))
213 c.send(msg)
216 c.send(('#TRACEBACK', format_exc()))
219 util.info('Failure to send message: %r', msg)
233 send = conn.send
288 send(msg)
290 send(('#UNSERIALIZABLE', repr(msg)))
348 c.send(('#RETURN', None)
975 def send(self, *args): member in class:IteratorProxy
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_kqueue.py 125 client.send("Hello!")
126 server.send("world!!!")
171 a.send(b'foo')
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
managers.py 99 Send a message to manager using connection `c` and return response
101 c.send((id, methodname, args, kwds))
213 c.send(msg)
216 c.send(('#TRACEBACK', format_exc()))
219 util.info('Failure to send message: %r', msg)
233 send = conn.send
288 send(msg)
290 send(('#UNSERIALIZABLE', repr(msg)))
348 c.send(('#RETURN', None)
975 def send(self, *args): member in class:IteratorProxy
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_kqueue.py 125 client.send("Hello!")
126 server.send("world!!!")
171 a.send(b'foo')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 99 Send a message to manager using connection `c` and return response
101 c.send((id, methodname, args, kwds))
213 c.send(msg)
216 c.send(('#TRACEBACK', format_exc()))
219 util.info('Failure to send message: %r', msg)
233 send = conn.send
288 send(msg)
290 send(('#UNSERIALIZABLE', repr(msg)))
348 c.send(('#RETURN', None)
975 def send(self, *args): member in class:IteratorProxy
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_kqueue.py 125 client.send("Hello!")
126 server.send("world!!!")
171 a.send(b'foo')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 99 Send a message to manager using connection `c` and return response
101 c.send((id, methodname, args, kwds))
213 c.send(msg)
216 c.send(('#TRACEBACK', format_exc()))
219 util.info('Failure to send message: %r', msg)
233 send = conn.send
288 send(msg)
290 send(('#UNSERIALIZABLE', repr(msg)))
348 c.send(('#RETURN', None)
975 def send(self, *args): member in class:IteratorProxy
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_kqueue.py 125 client.send("Hello!")
126 server.send("world!!!")
171 a.send(b'foo')

Completed in 4160 milliseconds

<<11121314151617181920>>