HomeSort by relevance Sort by last modified time
    Searched full:incoming (Results 101 - 125 of 1921) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/InCallUI/res/drawable/
ic_incall_audio_handle.xml 17 <!-- Touch handle for the GlowPadView widget on the incoming call screen -->
ic_incall_video_handle.xml 18 <!-- Touch handle for the GlowPadView widget on the incoming call screen -->
ic_lockscreen_answer.xml 16 <!-- Used with incoming call wigdet. -->
ic_lockscreen_answer_video.xml 17 <!-- Used with incoming call wigdet. -->
ic_lockscreen_decline.xml 16 <!-- Used with incoming call wigdet. -->
ic_lockscreen_decline_video.xml 17 <!-- Used with incoming call wigdet. -->
ic_lockscreen_text.xml 16 <!-- Used with incoming call wigdet. -->
  /packages/services/Telecomm/src/com/android/server/telecom/
CallIntentProcessor.java 20 * Single point of entry for all outgoing and incoming calls.
118 "Rejecting incoming call due to null phone account");
123 "Rejecting incoming call due to null component name");
136 "Processing incoming call from connection service [%s]",
  /system/bt/hci/include/
btsnoop.h 34 // true, the packet is marked as incoming. Otherwise, the packet is marked
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 184 * <p>This is where incoming data is persisted, committing the results of a sync. In order to
185 * minimize (expensive) disk operations, we compare incoming data with what's already in our
194 * 2. For each item, check if it's in the incoming data.<br/>
195 * a. YES: Remove from "incoming" list. Check if data has mutated, if so, perform
198 * (At this point, incoming database only contains missing items.)<br/>
199 * 3. For any items remaining in incoming list, ADD to database.
214 // Build hash table of incoming entries
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 184 * <p>This is where incoming data is persisted, committing the results of a sync. In order to
185 * minimize (expensive) disk operations, we compare incoming data with what's already in our
194 * 2. For each item, check if it's in the incoming data.<br/>
195 * a. YES: Remove from "incoming" list. Check if data has mutated, if so, perform
198 * (At this point, incoming database only contains missing items.)<br/>
199 * 3. For any items remaining in incoming list, ADD to database.
214 // Build hash table of incoming entries
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncAdapter.java 184 * <p>This is where incoming data is persisted, committing the results of a sync. In order to
185 * minimize (expensive) disk operations, we compare incoming data with what's already in our
194 * 2. For each item, check if it's in the incoming data.<br/>
195 * a. YES: Remove from "incoming" list. Check if data has mutated, if so, perform
198 * (At this point, incoming database only contains missing items.)<br/>
199 * 3. For any items remaining in incoming list, ADD to database.
214 // Build hash table of incoming entries
  /packages/apps/Messaging/src/com/android/messaging/ui/
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();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Connection.java 175 * Effectively, when an incoming call starts ringing or an
185 * For incoming calls: Begins at (INCOMING|WAITING) -> ACTIVE transition.
204 * For incoming calls: Begins at (INCOMING|WAITING) -> ACTIVE transition.
331 * Returns true if Connection is connected and is INCOMING or WAITING
369 connected, or this is an incoming call */
438 * Returns the caller id presentation type for incoming and waiting calls
445 * incoming and waiting calls
719 str.append(" incoming: " + isIncoming()
    [all...]
  /packages/apps/Email/provider_src/com/android/email/activity/setup/
AccountSettingsUtils.java 294 && "incoming".equals(xml.getName())
306 && "incoming-fallback".equals(xml.getName())
391 * Incoming: Prepend "imap" or "pop3" to domain, unless "pop", "pop3",
396 * @param incoming "pop3" or "imap" (or null)
400 public static String inferServerName(Context context, String server, String incoming,
413 if (incoming != null) {
414 // For incoming, we leave imap/pop/pop3/mail alone, or prepend incoming
430 return ((incoming != null) ? incoming : outgoing) + '.' + server.substring(keepFirstChar)
    [all...]
  /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...]
  /packages/services/Telephony/src/com/android/services/telephony/
PstnIncomingCallNotifier.java 47 * Listens to incoming-call events from the associated phone object and notifies Telecom upon each
108 * @param phoneProxy The phone object for listening to incoming calls.
165 * Verifies the incoming call and triggers sending the incoming-call intent to Telecom.
231 * Sends the incoming call intent to telecom.
  /packages/apps/InCallUI/src/com/android/incallui/
InCallPresenter.java 362 // Examples: (1) A new incoming call could come in and then get disconnected before
364 // (2) All calls could disconnect and then get a new incoming call before the
458 * Called when there is a new incoming call.
464 InCallState newState = startOrFinishUi(InCallState.INCOMING);
481 * changes from being connected (incoming/outgoing/active) to disconnected.
506 newState = InCallState.INCOMING;
680 * Answers any incoming call.
698 * Declines any incoming call.
    [all...]
  /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);
  /frameworks/av/services/camera/libcameraservice/utils/
ClientManager.h 201 * LRU descriptor being evicted (this means the incoming descriptor be added in this case).
202 * - Any descriptors with keys that are in the incoming descriptor's 'conflicting keys' list
203 * will be removed if they have an equal or lower priority than the incoming descriptor;
204 * if any have a higher priority, the incoming descriptor is removed instead.
205 * - If the sum of all descriptors' costs, including the incoming descriptor's, is more than
209 * incoming descriptor has the highest priority. Otherwise, the incoming descriptor is
324 * vector of ClientDescriptors that are higher priority than the incoming client and
326 * prevent the incoming client from being added.
403 // Switch back owner if the incoming client has the highest priority, as it is MR
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpStateMachine.java 101 // Incoming connections Pending
228 logi("Incoming A2DP accepted");
237 logi("Incoming A2DP rejected");
250 logi("Incoming A2DP accepted");
259 logi("Incoming A2DP rejected");
362 // check if there is some incoming connection request
412 logi("Ready to connect incoming Connection from pending state");
420 loge("Incoming A2DP rejected from pending state");
442 // there is an incoming connection from the target device at the same time
447 loge("Another connecting event on the incoming device")
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_LlcpTransport_Connection.h 105 * \brief <b>Listen for incoming connection requests on a socket</b>.
108 * incoming connection requests. In this state, the socket is not able to communicate
134 * \brief <b>Accept an incoming connection request for a socket</b>.
136 * This functions allows the client to accept an incoming connection request.
165 * \brief <b>Reject an incoming connection request for a socket</b>.
167 * This functions allows the client to reject an incoming connection request.
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 217 // Handle all non-constant incoming values first
219 Value *Incoming = Phi->getIncomingValue(i);
221 if (isa<ConstantInt>(Incoming)) {
227 Value *PhiArg = handleLoopCondition(Incoming, Broken, L);
235 Value *Incoming = Phi->getIncomingValue(i);
236 if (Incoming != BoolTrue)
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_wps.c 212 * @message: Pointer to incoming dbus message
324 * @message: Pointer to incoming dbus message
344 * @message: Pointer to incoming dbus message
366 * @iter: Pointer to incoming dbus message iter
402 * @iter: Pointer to incoming dbus message iter
426 * @iter: Pointer to incoming dbus message iter
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSettingsUtilsTests.java 47 * Incoming: Prepend "imap" or "pop3" to domain, unless "pop", "pop3",
80 // <incoming uri="imap+ssl+://imap.gmail.com" username="$email" />
91 // <incoming uri="pop3://pop-server.$domain" username="$email" />
150 // <incoming uri="pop3+ssl+://pop.east.cox.net" username="$user" />
166 // <incoming uri="pop3://pop.earthlink.net" username="$email" />
182 // <incoming uri="imap+ssl+://mail.mxes.net" username="$user_$domain" />

Completed in 3148 milliseconds

1 2 3 45 6 7 8 91011>>