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

1 2

  /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...]
  /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
49 Thread outgoing = new Thread(new SocketPipe(from, to)); local
51 outgoing.setName(LOGTAG);
53 outgoing.start();
  /external/webkit/Source/WebCore/dom/default/
PlatformMessagePortChannel.h 90 static PassRefPtr<PlatformMessagePortChannel> create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing);
91 PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing);
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.
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallTypeIconsView.java 33 * View that draws one or more symbols for different types of calls (missed calls, outgoing etc).
83 return mResources.outgoing;
112 public final Drawable outgoing; field in class:CallTypeIconsView.Resources
120 outgoing = r.getDrawable(R.drawable.ic_call_outgoing_holo_dark);
  /external/dbus/dbus/
dbus-auth.c 159 DBusString outgoing; /**< Outgoing data buffer */ member in struct:DBusAuth
362 if (!_dbus_string_init (&auth->outgoing))
409 _dbus_string_free (&auth->outgoing);
    [all...]
  /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:__anon24233
  /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:__anon25823
  /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:__anon27335
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ActivityState.java 176 protected void transitionOnNextPause(Class<? extends ActivityState> outgoing,
178 if (outgoing == PhotoPage.class && incoming == AlbumPage.class) {
179 mNextTransition = StateTransitionAnimation.Transition.Outgoing;
180 } else if (outgoing == AlbumPage.class && incoming == PhotoPage.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/
AccountSetupBasics.java 86 * -e OUTGOING smtp+ssl+://test_account:test_password@smtp.gmail.com
105 private static final String EXTRA_CREATE_ACCOUNT_OUTGOING = "OUTGOING";
296 String outgoing = intent.getStringExtra(EXTRA_CREATE_ACCOUNT_OUTGOING); local
298 TextUtils.isEmpty(incoming) || TextUtils.isEmpty(outgoing)) {
300 "INCOMING, OUTGOING");
304 forceCreateAccount(email, user, incoming, outgoing);
591 * @param outgoing The URI-style string defining the outgoing account
593 private void forceCreateAccount(String email, String user, String incoming, String outgoing) {
600 HostAuth.setHostAuthFromString(sendAuth, outgoing);
    [all...]
AccountSettingsUtils.java 139 && "outgoing".equals(xml.getName())
231 * templates are used in 4 fields -- incoming and outgoing URI and user name.
262 * Outgoing: Prepend "smtp" if "pop", "pop3", "imap" are found.
268 * @param outgoing "smtp" or null
271 public static String inferServerName(String server, String incoming, String outgoing) {
288 // For outgoing, replace imap/pop/pop3 with outgoing, leave mail alone, or
289 // prepend outgoing
299 return ((incoming != null) ? incoming : outgoing) + '.' + server.substring(keepFirstChar);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl4Test.java 356 public byte[] wrap(byte[] outgoing, int offset, int len)
Sasl3Test.java 360 public byte[] wrap(byte[] outgoing, int offset, int len)
  /external/openssh/
packet.c 128 /* Buffer for the partial outgoing packet being constructed. */
194 TAILQ_HEAD(, packet) outgoing;
237 TAILQ_INIT(&active_state->outgoing);
663 * If using packet compression, compress the payload of the outgoing
948 /* increment sequence number for outgoing packets */
950 logit("outgoing seqnr wraps around");
983 TAILQ_INSERT_TAIL(&active_state->outgoing, p, next);
997 while ((p = TAILQ_FIRST(&active_state->outgoing))) {
1003 TAILQ_REMOVE(&active_state->outgoing, p, next);
    [all...]
monitor.c 120 z_stream outgoing; member in struct:__anon11196
    [all...]
  /system/core/libcutils/
mq.c 184 /** Used to write outgoing header. */
264 /** Frees a simple, i.e. header-only, outgoing packet. */
266 ALOGD("Freeing outgoing packet.");
278 /** Sets up the buffer for the outgoing header. */
413 // Clear outgoing packet queue.
450 static bool peerProxyWriteFromBuffer(PeerProxy* peerProxy, Buffer* outgoing) {
451 ssize_t size = bufferWrite(outgoing, peerProxy->fd->fd);
456 return bufferWriteComplete(outgoing);
513 * Writes some outgoing data.
800 * Frees an outgoing packet containing a connection
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 102 llvm::BasicBlock *outgoing = Builder.GetInsertBlock(); local
103 assert(outgoing && "expression emission cleared block!");
117 if (incoming != outgoing && outgoing->use_empty()) {
118 outgoing->eraseFromParent();
    [all...]
  /external/libffi/src/powerpc/
ppc_closure.S 82 # now load up the pointer to the outgoing parameter
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 234 //append "?hl=<lang> to an outgoing request (such as to blog)
  /external/doclava/res/assets/templates/assets/
doclava-developer-docs.js 326 //append "?hl=<lang> to an outgoing request (such as to blog)

Completed in 1061 milliseconds

1 2