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

1 2 3 4

  /art/test/482-checker-loop-back-edge-use/src/
Main.java 23 public static void loop1(boolean incoming) {
24 while (incoming) {}
31 public static void loop2(boolean incoming) {
34 while (incoming) {}
44 public static void loop3(boolean incoming) {
45 // 'incoming' only needs a use at the outer loop's back edge.
48 System.out.println(incoming);
57 public static void loop4(boolean incoming) {
58 // 'incoming' has no loop use, so should not have back edge uses.
59 System.out.println(incoming);
    [all...]
  /external/mtpd/
pptp.c 132 } incoming, outgoing; variable in typeref:struct:packet
154 /* We are going to read a new message if incoming.expect is 0. */
155 if (!incoming.expect) {
156 incoming.length = 0;
157 incoming.expect = HEADER_SIZE;
163 length = incoming.expect - incoming.length;
164 if (incoming.length >= MAX_PACKET_LENGTH) {
168 if (incoming.expect > MAX_PACKET_LENGTH) {
169 length = MAX_PACKET_LENGTH - incoming.length
    [all...]
l2tp.c 120 } incoming, outgoing; variable in typeref:struct:packet
186 uint16_t *p = (uint16_t *)incoming.buffer;
188 incoming.length = recv(the_socket, incoming.buffer, MAX_PACKET_LENGTH, 0);
189 if (incoming.length == -1) {
198 if ((incoming.length != ACK_SIZE && incoming.length < MESSAGE_HEADER_SIZE)
200 ntohs(p[1]) != incoming.length || p[2] != local_tunnel) {
204 if (incoming.length == ACK_SIZE) {
205 incoming.message = ACK
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
ConversationDrawables.java 107 public Drawable getBubbleDrawable(final boolean selected, final boolean incoming,
111 if (incoming) {
117 } else if (incoming) {
126 } else if (incoming) {
139 private int getAudioButtonColor(final boolean incoming) {
140 return incoming ? mIncomingAudioButtonColor : mThemeColor;
143 public Drawable getPlayButtonDrawable(final boolean incoming) {
145 mContext, mAudioPlayButtonDrawable, getAudioButtonColor(incoming));
148 public Drawable getPauseButtonDrawable(final boolean incoming) {
150 mContext, mAudioPauseButtonDrawable, getAudioButtonColor(incoming));
    [all...]
AudioPlaybackProgressBar.java 115 public void setVisualStyle(final boolean incoming) {
116 if (mIncoming != incoming) {
117 mIncoming = incoming;
AudioAttachmentView.java 161 * @param incoming indicates whether the attachment view is to be styled as a part of an
162 * incoming message.
165 final boolean incoming, final boolean showAsSelected) {
169 bind(contentUri, incoming, showAsSelected);
173 final Uri dataSourceUri, final boolean incoming, final boolean showAsSelected) {
177 final boolean useIncomingStyle = incoming || showAsSelected;
183 mPrepareOnPlayback = incoming && !MediaUtil.canAutoAccessIncomingMedia();
  /system/bt/hci/src/
hci_layer.c 529 packet_receive_data_t *incoming = &incoming_packets[PACKET_TYPE_TO_INBOUND_INDEX(type)]; local
533 switch (incoming->state) {
536 incoming->bytes_remaining = preamble_sizes[PACKET_TYPE_TO_INDEX(type)];
537 memset(incoming->preamble, 0, PREAMBLE_BUFFER_SIZE);
538 incoming->index = 0;
539 incoming->state = PREAMBLE;
542 incoming->preamble[incoming->index] = byte;
543 incoming->index++;
544 incoming->bytes_remaining--
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/io/
NetworkTrafficListener.java 30 * <li>Incoming bytes, when the server receives bytes sent from a remote client</li>
53 * @param bytes the read-only buffer containing the incoming bytes
55 public void incoming(Socket socket, Buffer bytes); method in interface:NetworkTrafficListener
87 public void incoming(Socket socket, Buffer bytes) method in class:NetworkTrafficListener.Empty
  /cts/tools/dasm/src/java_cup/
lalr_item.java 110 /** Propagate incoming lookaheads through this item to others need to
112 * @params incoming symbols to potentially be added to lookahead of this item.
114 public void propagate_lookaheads(terminal_set incoming) throws internal_error
119 if (!needs_propagation && (incoming == null || incoming.empty()))
122 /* if we have null incoming, treat as an empty set */
123 if (incoming != null)
125 /* add the incoming to the lookahead of this item */
126 change = lookahead().add(incoming);
  /packages/apps/Email/provider_src/com/android/email/
NotificationController.java 28 void showLoginFailedNotificationSynchronous(long accountId, boolean incoming);
  /system/core/liblog/tests/
libc_test.cpp 68 int incoming = (eventData[0] & 0xFF) | local
73 if (incoming != 0) {
81 incoming = (eventData[4 + 1 + 0] & 0xFF) |
86 if (incoming == value) {
  /art/compiler/optimizing/
licm.cc 72 HInstruction* incoming = input->InputAt(0); local
73 environment->SetRawEnvAt(i, incoming);
74 incoming->AddEnvUseAt(environment, i);
  /frameworks/rs/api/
rs_allocation_data.spec 67 arg: uint32_t width, "Width of the incoming region to update."
68 arg: uint32_t height, "Height of the incoming region to update."
  /packages/apps/Email/src/com/android/email/activity/setup/
HeadlessAccountSettingsLoader.java 19 * then starts the {@link AccountServerSettingsActivity} activity with the incoming/outgoing
40 "incoming".equals(i.getData().getLastPathSegment()))
53 private LoadAccountIncomingSettingsAsyncTask(Context context, boolean incoming) {
55 mIncoming = incoming;
  /external/bison/build-aux/
gnupload 327 $dbg ncftpput ftp-upload.gnu.org /incoming/alpha $files $base.directive.asc
332 $dbg ncftpput ftp-upload.gnu.org /incoming/ftp $files $base.directive.asc
338 $dbg ncftpput savannah.gnu.org /incoming/savannah/$destdir $files
344 $dbg ncftpput savannah.nongnu.org /incoming/savannah/$destdir $files
354 done | $dbg sftp -b - puszcza.gnu.org.ua:/incoming/$destdir_topdir
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asynchat.py 74 self.incoming = []
85 self.incoming.append(data)
88 d = ''.join(self.incoming)
89 del self.incoming[:]
251 del self.incoming[:]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asynchat.py 74 self.incoming = []
85 self.incoming.append(data)
88 d = ''.join(self.incoming)
89 del self.incoming[:]
251 del self.incoming[:]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
SimSelectorAvatarRequest.java 61 final boolean incoming = AvatarUriUtil.getSimIncoming(mDescriptor.uri);
63 incoming);
69 final int height, final int subColor, final boolean selected, final boolean incoming) {
  /packages/apps/Messaging/src/com/android/messaging/util/
AvatarUriUtil.java 88 false /* selected */, Color.TRANSPARENT, true /* incoming */);
90 false /* selected */, Color.TRANSPARENT, false /* incoming */);
194 * @param incoming is this for an incoming message or outgoing message?
197 @Nullable final String slotIdentifier, final boolean selected, final boolean incoming) {
207 incoming);
211 final int subColor, final boolean incoming) {
219 builder.appendQueryParameter(PARAM_SIM_INCOMING, String.valueOf(incoming));
223 public static Uri getBlankSimIndicatorUri(final boolean incoming) {
224 return incoming ? BLANK_SIM_INDICATOR_INCOMING_URI : BLANK_SIM_INDICATOR_OUTGOING_URI
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/websocket/
AbstractExtension.java 75 public void bind(WebSocket.FrameConnection connection, FrameHandler incoming, WebSocketGenerator outgoing)
78 _inbound=incoming;
  /ndk/build/core/
definitions-graph.mk 266 # For topological sort, we need to count the number of incoming edges
270 # Count the number of incoming edges for each node during topological
279 # zero the incoming edge counter for module $1
280 -ndk-mod-topo-zero-incoming = \
283 # increment the incoming edge counter for module $1
284 -ndk-mod-topo-increment-incoming = \
287 # decrement the incoming edge counter for module $1
288 -ndk-mod-topo-decrement-incoming = \
291 # return non-empty if the module $1's incoming edge counter is > 0
292 -ndk-mod-topo-has-incoming = $(_ndk_mod_topo_incoming.$1
    [all...]
  /system/core/libpixelflinger/codeflinger/
texturing.cpp     [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CPPTarget.java 100 * around the incoming literal.
117 * around the incoming literal.
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 110 return mResources.incoming;
154 * Drawable representing an incoming answered call.
156 public final Drawable incoming; field in class:CallTypeIconsView.Resources
164 * Drawable representing an incoming missed call.
193 incoming = r.getDrawable(R.drawable.ic_call_arrow);
194 incoming.setColorFilter(r.getColor(R.color.answered_call), PorterDuff.Mode.MULTIPLY);
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 30 public int incoming; // the number of incoming branches. field in class:BasicBlock
38 incoming = 0;
77 .append(length).append(", in=").append(incoming)
202 m.block.incoming++;
340 bb.incoming++;
349 // the incoming flow from dead code is not counted
350 // bb.incoming++;
386 handler.incoming--;
392 handler.incoming++
    [all...]

Completed in 785 milliseconds

1 2 3 4