HomeSort by relevance Sort by last modified time
    Searched full:outgoing (Results 1 - 25 of 397) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/opencore/protocols/systems/3g-324m_pvterminal/h245/se/src/
se.cpp     [all...]
lc.cpp 51 /* : Status Outgoing Released */
76 /* : Status Outgoing Awaiting Release */
102 /* : Status Outgoing Awaiting Establishment */
130 /* : Status Outgoing Awaiting Establishment */
169 /* : Status Outgoing Established */
205 /* : Status Outgoing Released */
229 /* : Status Outgoing Awaiting Establishment */
255 /* : Status Outgoing Released */
279 /* : Status Outgoing Awaiting Establishment */
303 PtvRlsIdcSend(forwardLcn, &source , &p_OpenLogicalChannelReject->olcRejectCause, S_InfHeader::OUTGOING) ;
    [all...]
  /external/mtpd/
pptp.c 131 } incoming, outgoing; variable in typeref:struct:packet
136 memset(outgoing.buffer, 0, length);
137 outgoing.length = length;
138 outgoing.header.length = htons(length);
139 outgoing.header.type = CONTROL_MESSAGE;
140 outgoing.header.cookie = MAGIC_COOKIE;
141 outgoing.message = htons(message);
146 send(the_socket, outgoing.buffer, outgoing.length, 0);
225 outgoing.sccrq.protocol_version = PROTOCOL_VERSION
    [all...]
l2tp.c 118 } incoming, outgoing; variable in typeref:struct:packet
129 uint16_t *p = (uint16_t *)outgoing.buffer;
140 outgoing.message = message;
141 outgoing.length = MESSAGE_HEADER_SIZE;
147 struct attribute *p = (struct attribute *)&outgoing.buffer[outgoing.length];
152 outgoing.length += ATTRIBUTE_HEADER_SIZE + size;
167 uint16_t *p = (uint16_t *)outgoing.buffer;
168 p[1] = htons(outgoing.length);
169 send(the_socket, outgoing.buffer, outgoing.length, 0)
    [all...]
  /external/opencore/pvmi/pvmf/include/
pvmf_port_interface.h 55 PVMF_PORT_ACTIVITY_OUTGOING_MSG, /**< Outgoing message received. The node needs to call Send
59 PVMF_PORT_ACTIVITY_OUTGOING_QUEUE_BUSY, /**< Outgoing queue becomes busy and cannot receive more outgoing messages.
62 PVMF_PORT_ACTIVITY_OUTGOING_QUEUE_READY, /**< After the outgoing queue size reaches its capacity, the port
63 * would continue to process its outgoing queue, and when the size
65 * be notified that it can resume queueing outgoing data to this port. */
67 * node should suspend calling Send to process the outgoing messages until
70 * resume calling Send to process its outgoing queue. */
133 * Queue an outgoing media message to the port.
135 * The outgoing message is added to the outgoing message queue, and the messag
    [all...]
  /external/iptables/extensions/
libipt_MIRROR.man 9 chains. Note that the outgoing packets are
libipt_TCPMSS.man 3 outgoing interface's MTU minus 40). Of course, it can only be used
  /packages/apps/Email/res/xml/
providers.xml 49 one outgoing section. If more than one is specified only the first
65 Valid outgoing uri schemes are:
97 The username attribute MAY be the empty string for the outgoing element, but only if the
106 <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
110 <outgoing uri="smtp+ssl+://smtp.googlemail.com" username="$email" />
114 <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
118 <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
125 <outgoing uri="smtp://smtp.aim.com" username="$email" />
130 <outgoing uri="smtp://smtp.aol.com" username="$email" />
134 <outgoing uri="smtp+ssl+://smtp.comcast.net" username="$user" /
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
Forwarder.java 29 * accepts an incoming connection, and it will then forward the incoming/outgoing streams to a
48 Thread outgoing = new Thread(new SocketPipe(from, to)); local
50 outgoing.setName(LOGTAG);
52 outgoing.start();
  /external/opencore/protocols/systems/3g-324m_pvterminal/h245/se/include/
lcentry.h 49 #define LCBLC_OUTGOING_RLSED 0X00 /* Outgoing Released */
50 #define LCBLC_OUTGOING_AWTING_ETBMNT 0X10 /* Outgoing Awaiting Establishement */
51 #define LCBLC_OUTGOING_ETBED 0X20 /* Outgoing Established */
52 #define LCBLC_OUTGOING_AWTING_RLS 0X30 /* Outgoing Awaiting Release */
70 #define CLS_OUTGOING_IDLE 0X00 /* Outgoing Idle */
71 #define CLS_OUTGOING_AWTING_RPS 0X10 /* Outgoing Awaiting Response */
90 /* NOTE: OUTGOING with respect to LCBLC */
236 return("Outgoing RELEASED");
239 return("Outgoing AWAITING ESTABLISHMENT");
242 return("Outgoing ESTABLISHED")
    [all...]
ml.h 51 #define ML_OUTGOING_NOT_LOOPED 0X00 /* Outgoing Not Looped */
52 #define ML_OUTGOING_AWTING_RPS 0X10 /* Outgoing Awaiting Response */
53 #define ML_OUTGOING_LOOPED 0X20 /* Outgoing Looped */
65 enum InOut { OUTGOING, INCOMING };
67 ML(InOut inout = OUTGOING) : SEBase()
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoProcessOutgoingCallPermissionTest.java 30 * Verify that processing outgoing calls requires Permission.
48 * Verify that to process an outgoing call requires Permission.
73 assertFalse("Outgoing call processed without proper permissions", rcvr.callReceived);
  /packages/apps/Mms/src/com/android/mms/transaction/
AbstractRetryScheme.java 21 public static final int OUTGOING = 1;
  /external/opencore/nodes/pvsocketnode/src/
pvmf_socket_port.cpp 205 //In this node, we skip the outgoing queue and go directly to the connected port's
211 //outgoing queue.
220 // Connected Port incoming Queue is in busy / flushing state. Do not accept more outgoing messages
225 PVLOGGER_LOGMSG(PVLOGMSG_INST_MLDBG, iLogger, PVLOGMSG_INFO, (0, "PVMFSocketPort::QueueOutgoingMsg: Connected Port Incoming queue in busy / flushing state - Attempting to Q in output port's outgoing msg q"));
229 // Add message to outgoing queue and notify the node of the activity
232 // port queues grow indefinitely (we either a connected port busy or outgoing Q busy
241 // Outgoing queue size is at capacity and goes into busy state. The owner node is
254 //In this node, we skip the outgoing queue and go directly to the connected port's
  /external/opencore/protocols/systems/tools/general/common/include/
control_msg_hdr.h 31 OUTGOING = 2
44 TDirection Dir; /* Incoming/Outgoing SE */
  /external/opencore/nodes/pvclientserversocketnode/src/
pvmf_clientserver_socket_port.cpp 113 //outgoing queue.
122 // Connected Port incoming Queue is in busy / flushing state. Do not accept more outgoing messages
127 PVLOGGER_LOGMSG(PVLOGMSG_INST_MLDBG, iLogger, PVLOGMSG_INFO, (0, "PVMFClientServerSocketPort::QueueOutgoingMsg: Connected Port Incoming queue in busy / flushing state - Attempting to Q in output port's outgoing msg q"));
131 // Add message to outgoing queue and notify the node of the activity
134 // port queues grow indefinitely (we either a connected port busy or outgoing Q busy
143 // Outgoing queue size is at capacity and goes into busy state. The owner node is
  /external/opencore/protocols/systems/3g-324m_pvterminal/h324/tsc/src/
tsc_component.cpp 206 max_sdu_size = iH223->GetSduSize(OUTGOING, E_EP_MEDIUM);
217 max_sdu_size = iH223->GetSduSize(OUTGOING, E_EP_HIGH);
232 max_sdu_size = iH223->GetSduSize(OUTGOING, E_EP_LOW);
421 Oscl_Vector<H324ChannelParameters, PVMFTscAlloc>* config = (dir == OUTGOING) ?
469 Oscl_Vector<H324ChannelParameters, PVMFTscAlloc>* config = (dir == OUTGOING) ?
622 if (dir == OUTGOING)
729 // is there is a pending outgoing OLC for the same media type ?
730 if (iOlcs.FindOlcs(OUTGOING, media_type, OLC_PENDING, pending_olc_list))
733 (0, "TSC_component::LcEtbIdc Pending outgoing OLCs(%d) found for incoming media type(%d).",
757 ChannelReleased(OUTGOING, param->GetChannelId(), PVMFErrCancelled)
    [all...]
  /development/pdk/docs/porting/
customization.jd 188 &lt;outgoing uri=&quot;smtp+ssl+://smtp.gmail.com&quot; username=&quot;$email&quot;/&gt;
192 &lt;outgoing uri=&quot;smtp+ssl+://smtp.googlemail.com&quot; username=&quot;$email&quot;/&gt;
196 &lt;outgoing uri=&quot;smtp+ssl+://smtp.gmail.com&quot; username=&quot;$email&quot;/&gt;
200 &lt;outgoing uri=&quot;smtp+ssl+://smtp.gmail.com&quot; username=&quot;$email&quot;/&gt;
207 &lt;outgoing uri=&quot;smtp://smtp.aim.com:587&quot; username=&quot;$email&quot;/&gt;
211 &lt;outgoing uri=&quot;smtp://smtp.aol.com:587&quot; username=&quot;$email&quot;/&gt;
215 &lt;outgoing uri=&quot;smtp+ssl+://smtp.comcast.net&quot; username=&quot;$user&quot;/&gt;
219 &lt;outgoing uri=&quot;smtp://smtp.cs.com&quot; username=&quot;$user&quot;/&gt;
223 &lt;outgoing uri=&quot;smtp+tls://smtp.mac.com&quot; username=&quot;$email&quot;/&gt;
227 &lt;outgoing uri=&quot;smtp://smtpauth.earthlink.net:587&quot; username=&quot;$email&quot;/&gt
    [all...]
  /external/webkit/WebCore/dom/default/
PlatformMessagePortChannel.cpp 101 PassRefPtr<PlatformMessagePortChannel> PlatformMessagePortChannel::create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing)
103 return adoptRef(new PlatformMessagePortChannel(incoming, outgoing));
106 PlatformMessagePortChannel::PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing)
109 , m_outgoingQueue(outgoing)
120 // Create incoming/outgoing queues.
  /external/icu4c/common/unicode/
resbund.h 213 * @param status fills in the outgoing error code
228 * @param status fills in the outgoing error code
243 * @param status fills in the outgoing error code
257 * @param status fills in the outgoing error code
271 * @param status fills in the outgoing error code
331 * @param status fills in the outgoing error code
342 * @param status fills in the outgoing error code
354 * @param status fills in the outgoing error code
366 * @param status fills in the outgoing error code
378 * @param status fills in the outgoing error cod
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_tls_common.h 33 * tls_out_len - Total length of the outgoing TLS message
38 * tls_out_pos - The current position in the outgoing TLS message
43 * tls_out_limit - Maximum fragment size for outgoing TLS messages
  /external/dbus/dbus/
dbus-auth.c 155 DBusString outgoing; /**< Outgoing data buffer */ member in struct:DBusAuth
353 if (!_dbus_string_init (&auth->outgoing))
378 _dbus_string_free (&auth->outgoing);
    [all...]
  /external/bluetooth/bluez/audio/
gstsbcdec.h 52 /* caps for outgoing buffers */
  /external/bluetooth/bluez/src/
hcid.conf 47 # deny role switch on outgoing connections
  /external/opencore/nodes/pvloopbacknode/src/
pvmf_loopback_ioport.cpp 134 //An outgoing message was queued on this port.
150 //Outgoing queue is now busy.
152 //outgoing queue busy as needed during data processing.
218 //Process outgoing messages

Completed in 390 milliseconds

1 2 3 4 5 6 7 8 91011>>