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

1 2 3

  /external/mtpd/
pptp.c 132 } incoming, outgoing; variable in typeref:struct:packet
137 memset(outgoing.buffer, 0, length);
138 outgoing.length = length;
139 outgoing.header.length = htons(length);
140 outgoing.header.type = CONTROL_MESSAGE;
141 outgoing.header.cookie = MAGIC_COOKIE;
142 outgoing.message = htons(message);
147 send(the_socket, outgoing.buffer, outgoing.length, 0);
223 outgoing.sccrq.protocol_version = PROTOCOL_VERSION
    [all...]
l2tp.c 119 } incoming, outgoing; variable in typeref:struct:packet
130 uint16_t *p = (uint16_t *)outgoing.buffer;
141 outgoing.message = message;
142 outgoing.length = MESSAGE_HEADER_SIZE;
148 struct attribute *p = (struct attribute *)&outgoing.buffer[outgoing.length];
153 outgoing.length += ATTRIBUTE_HEADER_SIZE + size;
168 uint16_t *p = (uint16_t *)outgoing.buffer;
169 p[1] = htons(outgoing.length);
170 send(the_socket, outgoing.buffer, outgoing.length, 0)
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/sasl/
SaslClient.java 36 byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException;
SaslServer.java 36 byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException;
  /external/chromium_org/third_party/WebKit/Source/core/dom/default/
PlatformMessagePortChannel.h 91 static PassRefPtr<PlatformMessagePortChannel> create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing);
92 PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing);
PlatformMessagePortChannel.cpp 154 PassRefPtr<PlatformMessagePortChannel> PlatformMessagePortChannel::create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing)
156 return adoptRef(new PlatformMessagePortChannel(incoming, outgoing));
159 PlatformMessagePortChannel::PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing)
161 , m_outgoingQueue(outgoing)
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 33 * View that draws one or more symbols for different types of calls (missed calls, outgoing etc).
83 return mResources.outgoing;
116 public final Drawable outgoing; field in class:CallTypeIconsView.Resources
124 outgoing = r.getDrawable(R.drawable.ic_call_outgoing_holo_dark);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_bb.cpp 102 for (Graph::EdgeIterator it = cfg.outgoing(); !it.end(); it.next()) {
309 while (!cfg.outgoing(true).end()) {
310 Graph::Edge *e = cfg.outgoing(true).getEdge();
371 for (Graph::EdgeIterator ei = cfg.outgoing(); !ei.end(); ei.next())
373 eR = out[1]->outgoing().getType();
382 if (out[1]->outgoing().getNode() == out[0])
385 if (out[0]->outgoing().getNode() == out[1]->outgoing().getNode())
517 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
nv50_ir_graph.h 67 Edge *next[2]; // next edge outgoing/incident from/to origin/target
115 inline EdgeIterator outgoing(bool reverse = false) const;
207 Graph::EdgeIterator Graph::Node::outgoing(bool reverse) const function in class:nv50_ir::Graph::Node
nv50_ir_graph.cpp 131 EdgeIterator ei = this->outgoing();
186 for (EdgeIterator ei = pos->outgoing(); !ei.end(); ei.next()) {
225 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next())
297 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) {
408 for (EdgeIterator ei = c->outgoing(); !ei.end(); ei.next()) {
nv50_ir_ssa.cpp 101 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) {
199 for (succIt = bb->cfg.outgoing(); !succIt.end(); succIt.next()) {
205 for (chldIt = bb->dom.outgoing(); !chldIt.end(); chldIt.next()) {
229 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
488 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
509 for (Graph::EdgeIterator ei = bb->dom.outgoing(); !ei.end(); ei.next())
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_bb.cpp 102 for (Graph::EdgeIterator it = cfg.outgoing(); !it.end(); it.next()) {
309 while (!cfg.outgoing(true).end()) {
310 Graph::Edge *e = cfg.outgoing(true).getEdge();
371 for (Graph::EdgeIterator ei = cfg.outgoing(); !ei.end(); ei.next())
373 eR = out[1]->outgoing().getType();
382 if (out[1]->outgoing().getNode() == out[0])
385 if (out[0]->outgoing().getNode() == out[1]->outgoing().getNode())
517 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
nv50_ir_graph.h 67 Edge *next[2]; // next edge outgoing/incident from/to origin/target
115 inline EdgeIterator outgoing(bool reverse = false) const;
207 Graph::EdgeIterator Graph::Node::outgoing(bool reverse) const function in class:nv50_ir::Graph::Node
nv50_ir_graph.cpp 131 EdgeIterator ei = this->outgoing();
186 for (EdgeIterator ei = pos->outgoing(); !ei.end(); ei.next()) {
225 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next())
297 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) {
408 for (EdgeIterator ei = c->outgoing(); !ei.end(); ei.next()) {
nv50_ir_ssa.cpp 101 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) {
199 for (succIt = bb->cfg.outgoing(); !succIt.end(); succIt.next()) {
205 for (chldIt = bb->dom.outgoing(); !chldIt.end(); chldIt.next()) {
229 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
488 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
509 for (Graph::EdgeIterator ei = bb->dom.outgoing(); !ei.end(); ei.next())
  /external/chromium_org/cc/trees/
layer_sorter.h 60 std::vector<GraphEdge*> outgoing; member in struct:cc::GraphNode
layer_sorter.cc 340 edge.from->outgoing.push_back(&edge);
408 // Remove all its outgoing edges from the graph.
409 for (size_t i = 0; i < from_node->outgoing.size(); i++) {
410 GraphEdge* outgoing_edge = from_node->outgoing[i];
419 from_node->outgoing.clear();
445 RemoveEdgeFromList(incoming_edge, &incoming_edge->from->outgoing);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
isdn.h 90 #define ISDN_USAGE_OUTGOING 128 /* This bit is set, if channel is outgoing */
110 int outgoing; member in struct:__anon39417
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
isdn.h 90 #define ISDN_USAGE_OUTGOING 128 /* This bit is set, if channel is outgoing */
110 int outgoing; member in struct:__anon41008
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
isdn.h 90 #define ISDN_USAGE_OUTGOING 128 /* This bit is set, if channel is outgoing */
110 int outgoing; member in struct:__anon42522
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ActivityState.java 170 protected void transitionOnNextPause(Class<? extends ActivityState> outgoing,
172 if (outgoing == SinglePhotoPage.class && incoming == AlbumPage.class) {
173 mNextTransition = StateTransitionAnimation.Transition.Outgoing;
174 } else if (outgoing == AlbumPage.class && incoming == SinglePhotoPage.class) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar 
  /cts/tools/dasm/src/java_cup/
lalr_state.java 281 symbol_set outgoing; local
317 outgoing = new symbol_set();
324 if (sym != null) outgoing.add(sym);
328 for (s = outgoing.all(); s.hasMoreElements(); )
510 /* consider each outgoing transition */
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
tcpport.cc 75 // Check if we are allowed to make outgoing TCP connections
184 bool outgoing = (socket_ == NULL); local
185 if (outgoing) {
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsUtils.java 156 && "outgoing".equals(xml.getName())
235 * Outgoing: Prepend "smtp" if domain starts with any in the host prefix array
239 * @param outgoing "smtp" or null
243 String outgoing) {
261 // For outgoing, replace imap/pop/pop3 with outgoing, leave mail alone, or
262 // prepend outgoing
272 return ((incoming != null) ? incoming : outgoing) + '.' + server.substring(keepFirstChar);

Completed in 783 milliseconds

1 2 3