HomeSort by relevance Sort by last modified time
    Searched refs:active (Results 326 - 350 of 1224) sorted by null

<<11121314151617181920>>

  /frameworks/base/telephony/java/android/telephony/data/
DataCallResponse.java 53 * @param active Data connection active status. 0 = inactive, 1 = active/physical link down,
54 * 2 = active/physical link up.
72 public DataCallResponse(int status, int suggestedRetryTime, int cid, int active,
81 mActive = active;
125 * @return 0 = inactive, 1 = active/physical link down, 2 = active/physical link up.
182 .append(" active=").append(mActive)
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 75 void notifyCarrierNetworkChange(in boolean active);
  /frameworks/native/services/sensorservice/
SensorService.h 105 // active state we will start reporting events as usual and vise versa. This
107 // between idle/active state avoiding to get stuck in a state receiving sensor
108 // data while idle or not receiving sensor data while active.
122 void addOverrideUid(uid_t uid, bool active);
126 void updateOverrideUid(uid_t uid, bool active, bool insert);
151 // in NORMAL mode. When this mode is first activated, all active sensors from all connections
  /frameworks/support/media/api21/android/support/v4/media/session/
MediaSessionCompatApi21.java 86 public static void setActive(Object sessionObj, boolean active) {
87 ((MediaSession)sessionObj).setActive(active);
  /hardware/interfaces/thermal/1.0/default/
Thermal.cpp 125 cpuUsages[i].active = list[i].active;
  /hardware/interfaces/thermal/1.0/vts/functional/
VtsHalThermalV1_0TargetTest.cpp 160 // .active must be less than .total if CPU is online.
162 (cpuUsage.active >= 0 && cpuUsage.total >= 0 &&
163 cpuUsage.total >= cpuUsage.active));
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationStation.java 85 public boolean active; field in class:NotificationStation.HistoricalNotificationInfo
268 StatusBarNotification[] active = mNoMan.getActiveNotifications( local
274 = new ArrayList<HistoricalNotificationInfo>(active.length + dismissed.length);
277 : new StatusBarNotification[][] { active, dismissed }) {
299 info.active = (resultset == active);
395 if (info.active) {
396 // mRanking only applies to active notifications
609 row.itemView.setAlpha(mInfo.active ? 1.0f : 0.5f);
  /packages/services/Car/TrustAgent/src/com/android/car/trust/
CarEnrolmentActivity.java 59 Log.e(TAG, "No active bluetooth found to add escrow token");
79 public void onEscrowTokenActiveStateChanged(long handle, boolean active) {
80 appendOutputText("Is token active? " + active + " handle: " + handle);
199 Log.d(TAG, "onResume, checking handle active: " + tokenHandle);
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cluster/
InstrumentClusterFragment.java 141 boolean active) {
142 Log.d(TAG, "onAppFocusChanged, appType: " + appType + " active: "
143 + active);
171 Log.e(TAG, "Failed to set active focus", e);
  /prebuilts/go/darwin-x86/src/sync/
runtime.go 56 // Active spinning runtime support.
60 // runtime_doSpin does active spinning.
  /prebuilts/go/linux-x86/src/sync/
runtime.go 56 // Active spinning runtime support.
60 // runtime_doSpin does active spinning.
  /system/bt/btif/co/
bta_hl_co.cc 203 BTIF_TRACE_DEBUG("%s mdep_id =%d, item_idx=%d active=%d mdl_id=%d time=%d",
204 __func__, mdep_id, item_idx, p_mdl_cfg->active,
262 if (p->active) {
  /system/bt/btif/include/
btif_hl.h 115 bool active; member in struct:__anon1718
202 bool active; member in struct:__anon1726
  /test/vti/dashboard/src/main/webapp/css/
dashboard_main.css 106 .ui-menu-item:active {
test_results.css 15 li.test-run-container.active {
  /frameworks/av/include/media/
VolumeShaper.h 626 std::pair<T /* volume */, bool /* active */> getVolume(
648 std::tuple<T /* volume */, S /* position */, bool /* active */> vt =
653 const bool active = std::get<2>(vt); local
654 VS_LOG("rescaled time:%f volume:%f xOffset:%f active:%s",
655 x, mLastVolume, mLastXOffset, active ? "true" : "false");
656 return std::make_pair(mLastVolume, active);
707 std::tuple<T /* volume */, S /* position */, bool /* active */>
709 bool active = true; local
716 active = false; // at the end
725 active = false; // at en
    [all...]
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityService.java 60 * of the active window. Development of an accessibility service requires extending this
388 void onFingerprintCapturingGesturesChanged(boolean active);
561 * Gets the root node in the currently active window if this service
562 * can retrieve window content. The active window is the one that the user
566 * The currently active window is defined as the window that most recently fired one
739 * @param active If gesture detection is active
741 private void onFingerprintCapturingGesturesChanged(boolean active) {
742 getFingerprintGestureController().onGestureDetectionActiveChanged(active);
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
StateMachine.java 125 * <p>After starting mS5 the list of active states is mP0, mP1, mS1 and mS5.
135 * mS4.enter. The new list of active states is mP0, mP1, mS2 and mS4. So
734 boolean active; field in class:StateMachine.SmHandler.StateInfo
741 return "state=" + state.getName() + ",active=" + active + ",parent="
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 421 * Returns the sorted list of active notifications (depending on {@link Environment}
424 * This call doesn't update the list of active notifications. Call {@link #filterAndSort()}
772 pw.println("active notifications: " + N);
773 int active; local
774 for (active = 0; active < N; active++) {
775 NotificationData.Entry e = mSortedAndFiltered.get(active);
776 dumpEntry(pw, indent, active, e);
781 pw.println("inactive notifications: " + (M - active));
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/
rfc2217.py 221 ACTIVE = 'ACTIVE'
248 self.active = False
253 return "%s:%s(%s)" % (self.name, self.active, self.state)
260 self.state = ACTIVE
261 self.active = True
264 elif self.state is ACTIVE:
267 self.state = ACTIVE
269 self.active = True
279 self.active = Fals
332 active = property(isReady) variable in class:TelnetSubnegotiation
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
h264_utils.cpp 469 if (!active)
472 active = true;
479 if (active)
482 active = false;
500 active = false;
    [all...]
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
h264_utils.cpp 434 if (!active) {
436 active = true;
443 if (active) {
445 active = false;
462 active = false;
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
h264_utils.cpp 434 if (!active) {
436 active = true;
443 if (active) {
445 active = false;
462 active = false;
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
h264_utils.cpp 434 if (!active) {
436 active = true;
443 if (active) {
445 active = false;
462 active = false;
    [all...]
  /external/jemalloc/src/
prof.c 1923 bool active = tdata->active; local
    [all...]

Completed in 1101 milliseconds

<<11121314151617181920>>