HomeSort by relevance Sort by last modified time
    Searched defs:send (Results 276 - 300 of 646) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
imaplib.py 225 read, readline, send, shutdown.
243 def send(self, data): member in class:IMAP4
244 """Send data to remote."""
573 """Send NOOP command.
857 self.send('%s%s' % (data, CRLF))
871 # Send literal
881 self.send(literal)
882 self.send(CRLF)
1174 def send(self, data): member in class:IMAP4.IMAP4_SSL
1252 def send(self, data): member in class:IMAP4_stream
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_ftplib.py 323 def send(self, data): member in class:.SSLConnection
325 return super(SSLConnection, self).send(data)
694 conn.send("1 Hola mundo\n")
  /external/autotest/client/bin/net/
net_utils.py 374 def send(self, buf): member in class:network_interface
375 self._socket.send(buf)
498 """Opens the raw socket to send and receive.
566 def send(self, packet): member in class:raw_socket
567 """Send an ethernet packet."""
571 self._socket.send(packet)
575 """Send an ethernet frame.
577 Send an ethernet frame, formating the header.
591 self.send(packet)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_generator.cpp 336 /* Check runtime bit to detect if we have to send AA data or not */
347 /* Don't send AA data */
440 * send, the instruction requires a ?Switch?. This is to avoid
441 * race condition where send may dispatch before MRF is updated."
457 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
458 brw_set_dest(p, send, retype(dst, BRW_REGISTER_TYPE_UD));
459 brw_set_src0(p, send, header);
460 brw_set_src1(p, send, brw_imm_ud(0u));
462 brw_inst_set_sfid(p->devinfo, send, BRW_SFID_URB);
463 brw_inst_set_urb_opcode(p->devinfo, send, GEN8_URB_OPCODE_SIMD8_READ)
1164 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1246 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1298 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
    [all...]
brw_vec4_generator.cpp 326 /* dst = send(offset, a0.0 | <descriptor>) */
508 /* Send SVB Write */
777 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
778 brw_set_dest(p, send, brw_null_reg());
779 brw_set_src0(p, send, urb_header);
781 brw_set_message_descriptor(p, send, BRW_SFID_URB,
784 brw_inst_set_urb_opcode(devinfo, send, BRW_URB_OPCODE_WRITE_OWORD);
785 brw_inst_set_urb_global_offset(devinfo, send, inst->offset);
787 brw_inst_set_eot(devinfo, send, 1);
789 brw_inst_set_urb_per_slot_offset(devinfo, send, 1)
950 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
987 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1164 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1240 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
1306 brw_inst *send = brw_next_insn(p, BRW_OPCODE_SEND); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageChannel.java 217 * Constructor. We create one of these when we send out a message.
220 * INET address of the place where we want to send messages.
222 * target port (where we want to send the message).
272 // Send a heartbeat to the thread auditor
350 // JvB: send a 400 response for requests (except ACK)
391 ((UDPMessageProcessor)this.messageProcessor).sock.send(keepalive);
609 * Message string to send.
626 // Test and see where we are going to send the messsage. If the message
671 * Send a message to a specified receiver address.
674 * string to send
    [all...]
  /external/ppp/pppd/plugins/radius/
radius.c 126 VALUE_PAIR *avp; /* Additional (user supplied) vp's to send to server */
250 VALUE_PAIR *send, *received; local
271 send = NULL;
279 rc_avpair_add(&send, PW_SERVICE_TYPE, &av_type, 0, VENDOR_NONE);
282 rc_avpair_add(&send, PW_FRAMED_PROTOCOL, &av_type, 0, VENDOR_NONE);
284 rc_avpair_add(&send, PW_USER_NAME, rstate.user , 0, VENDOR_NONE);
285 rc_avpair_add(&send, PW_USER_PASSWORD, passwd, 0, VENDOR_NONE);
287 rc_avpair_add(&send, PW_CALLING_STATION_ID, remote_number, 0,
290 rc_avpair_add(&send, PW_CALLING_STATION_ID, ipparam, 0, VENDOR_NONE);
294 rc_avpair_insert(&send, NULL, rc_avpair_copy(rstate.avp))
339 VALUE_PAIR *send, *received; local
891 VALUE_PAIR *send = NULL; local
977 VALUE_PAIR *send = NULL; local
1125 VALUE_PAIR *send = NULL; local
    [all...]
  /external/python/cpython2/Lib/
imaplib.py 235 read, readline, send, shutdown.
256 def send(self, data): member in class:IMAP4
257 """Send data to remote."""
586 """Send NOOP command.
870 self.send('%s%s' % (data, CRLF))
884 # Send literal
894 self.send(literal)
895 self.send(CRLF)
1192 def send(self, data): member in class:IMAP4.IMAP4_SSL
1270 def send(self, data): member in class:IMAP4_stream
    [all...]
  /external/python/cpython2/Lib/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', format_exc()))
348 c.send(('#RETURN', None)
976 def send(self, *args): member in class:IteratorProxy
    [all...]
  /external/python/cpython3/Lib/
_collections_abc.py 119 def send(self, value): member in class:Coroutine
120 """Send a value into the coroutine.
151 return _check_methods(C, '__await__', 'send', 'throw', 'close')
204 """Send a value into the asynchronous generator.
317 return self.send(None)
320 def send(self, value): member in class:Generator
321 """Send a value into the generator.
353 'send', 'throw', 'close')
ssl.py 573 * Any form of network IO incluging methods such as ``recv`` and ``send``.
928 def send(self, data, flags=0): member in class:SSLSocket
    [all...]
  /external/python/cpython3/Lib/http/
client.py 160 "if you want to send it encoded in UTF-8." %
866 The headers argument should be a mapping of extra HTTP headers to send
906 self.send(connect_bytes)
910 self.send(header_bytes)
911 self.send(b'\r\n')
956 def send(self, data): member in class:HTTPConnection
    [all...]
  /external/python/cpython3/Lib/logging/
handlers.py 568 def send(self, s): member in class:SocketHandler
570 Send a pickled string to the socket.
634 self.send(s)
682 def send(self, s): member in class:DatagramHandler
684 Send a pickled string to a socket.
    [all...]
  /external/scapy/scapy/
automaton.py 199 def send(self, obj): member in class:ObjectPipe
204 self.send(obj)
364 def send(self, s): member in class:_ATMT_supersocket
367 return self.spa.send(s)
512 self.send_sock.send(pkt)
541 self.rd.send(msg)
546 def send(self, msg): member in class:Automaton._IO_fdwrapper
563 def send(self, msg): member in class:Automaton._IO_mixer
564 self.wr.send(msg)
567 return self.send(msg
603 def send(self, pkt): member in class:Automaton
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
encapsulate_subgraphs_pass_test.cc 863 Node* send = SendFromHost("host_compute_channel_F1_O1", {e}, local
1628 Node* send = SendFromHost("host_compute_channel_F1_O1", {e}, local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_verifier.cc 304 Status ShapeVerifier::HandleSend(HloInstruction* send) {
305 TF_RET_CHECK(send->users().size() == 1);
306 const HloInstruction* send_done = send->users().front();
308 TF_RETURN_IF_ERROR(CheckSameChannel(send, send_done));
310 send, ShapeUtil::MakeTupleShape(
311 {send->operand(0)->shape(), ShapeUtil::MakeShape(U32, {})}));
316 const HloInstruction* send = send_done->operand(0); local
317 TF_RET_CHECK(send->opcode() == HloOpcode::kSend);
318 TF_RETURN_IF_ERROR(CheckSameChannel(send, send_done));
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
constant_folding_test.cc 405 auto send = local
406 ops::_Send(s.WithOpName("send"), add, "send", "sender", 0, "receiver");
417 Node* send = index.at("send"); local
419 ASSERT_EQ(1, send->num_inputs());
420 Node* p = *(send->in_nodes().begin());
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
MidiTest.java 198 logger.log("Failed to send command CMD_MIDI: " + e.getMessage());
215 midiInputPort.send(noteMsg, 0, noteMsg.length, t + ((long) noteDelay) * 1000000L * i);
  /external/webrtc/talk/media/webrtc/
fakewebrtcvoiceengine.h 149 send(false),
170 bool send; member in struct:cricket::FakeWebRtcVoiceEngine::Channel
233 return channels_[channel]->send;
369 channels_[channel]->send = true;
385 channels_[channel]->send = false;
491 // Return -1 if current send codec is not Opus.
507 // Return -1 if current send codec is not Opus.
526 // Return -1 if current send codec is not Opus.
  /frameworks/base/core/java/android/app/
PendingIntent.java 128 * {@link #send()} is called on it, it will be automatically
129 * canceled for you and any future attempt to send through it will fail.
164 * This means that the additional intent argument passed to the send
171 * Exception thrown when trying to send through a PendingIntent that
188 * Callback interface for discovering when a send operation has
197 * Called when a send operation as completed.
201 * @param resultCode The final result code determined by the send.
301 * of the intent that can be supplied when the actual send happens.
332 * of the intent that can be supplied when the actual send happens.
406 * {@link #send(Context, int, Intent)} and {@link #FLAG_UPDATE_CURRENT}, etc
687 public void send() throws CanceledException { method in class:PendingIntent
688 send(null, 0, null, null, null, null, null); method
701 public void send(int code) throws CanceledException { method in class:PendingIntent
702 send(null, code, null, null, null, null, null); method
721 public void send(Context context, int code, @Nullable Intent intent) method in class:PendingIntent
723 send(context, code, intent, null, null, null, null); method
742 public void send(int code, @Nullable OnFinished onFinished, @Nullable Handler handler) method in class:PendingIntent
744 send(null, code, null, onFinished, handler, null, null); method
780 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
782 send(context, code, intent, onFinished, handler, null, null); method
823 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
827 send(context, code, intent, onFinished, handler, requiredPermission, null); method
870 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
    [all...]
  /frameworks/base/core/jni/
android_os_HwParcel.cpp 211 void JHwParcel::send() { function in class:android::JHwParcel
411 JHwParcel::GetNativeContext(env, thiz)->send();
957 { "send", "()V", (void *)JHwParcel_native_send },
  /frameworks/base/services/core/java/com/android/server/am/
PendingIntentRecord.java 237 public void send(int code, Intent intent, String resolvedType, IBinder whitelistToken, method in class:PendingIntentRecord
358 Slog.w(TAG, "Unable to send startActivity intent", e);
380 Slog.w(TAG, "Unable to send startActivity intent", e);
390 Slog.w(TAG, "Unable to send startService intent", e);
  /frameworks/base/services/core/java/com/android/server/location/
GeofenceManager.java 404 pendingIntent.send(mContext, 0, intent, this, null,
  /frameworks/native/libs/binder/tests/
schd-dbg.cpp 182 void send(const T& v) { function in class:Pipe
371 p.send(&dummy);
486 // start to send result
  /hardware/google/av/codec2/hidl/1.0/utils/
types.cpp 620 ResultStatus bpStatus = bufferPoolSender->send(
625 ALOGE("Failed to send buffer with BufferPool. Error: %d.",
878 ResultStatus DefaultBufferPoolSender::send( function in class:hardware::google::media::c2::V1_0::utils::DefaultBufferPoolSender
    [all...]

Completed in 397 milliseconds

<<11121314151617181920>>