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

<<11121314151617181920>>

  /art/adbconnection/
adbconnection.cc 292 NotifyDdms(/*active*/false);
296 void AdbConnectionState::NotifyDdms(bool active) {
298 DCHECK_NE(notified_ddm_active_, active);
299 notified_ddm_active_ = active;
300 if (active) {
576 // Check for the control_sock_ actually going away. Only do this if we don't have an active
654 // Reset the connection since we don't have an active socket through the adb server.
656 << "connection active";
766 NotifyDdms(/*active*/ true);
    [all...]
  /build/soong/ui/tracer/
tracer.go 214 // Begin starts a new Duration Event. More than one Duration Event may be active
226 // End finishes the most recent active Duration Event on the thread.
  /external/adhd/cras/src/server/
cras_dbus_control.c 427 dbus_bool_t active; local
437 active = !!node->active;
466 if (!append_key_value(&dict, "Active", DBUS_TYPE_BOOLEAN,
467 DBUS_TYPE_BOOLEAN_AS_STRING, &active))
    [all...]
  /external/autotest/client/cros/
ec.py 287 <svid>: {active: True|False, configs: <config_list>, opos:<opos>}
292 <opos> : integer of active object position.
306 active = match.group(1) == '*'
320 svids[svid] = dict(active=active, configs=configs, opos=opos)
361 if self._amodes[svid]['active'] and self._amodes[svid]['opos'] == opos:
  /external/autotest/client/profilers/powertop/src/
powertop.c 62 int active; member in struct:irqdata
155 if (interrupts[i].active && interrupts[i].number == irq) {
161 if (!interrupts[i].active && firstfree > i)
165 interrupts[firstfree].active = 1;
  /external/libnl/doc/stylesheets/
slidy.css 210 a:active { color: red; text-decoration: underline }
215 .navbar a:active {color: red}
  /external/libxkbcommon/xkbcommon/src/
state.c 130 * entry->active field).
487 * key held down, so keep the base modifier state active (from
524 * that are currently active, then if no filter has claimed the key, possibly
536 /* First run through all the currently active filters and see if any of
1142 xkb_mod_mask_t active = xkb_state_serialize_mods(state, type); local
    [all...]
  /external/libxml2/include/libxml/
xpath.h 503 int active,
  /external/llvm/utils/lit/lit/
TestRunner.py 55 if not self.active():
59 def active(self): member in class:TimeoutHelper
63 if not self.active():
82 if not self.active():
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_render_gen6.c 341 if (r->state.gs.active && !gs_active)
345 r->state.gs.active = gs_active;
910 if (r->state.gs.active) {
912 r->state.gs.active = false;
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_state.c 474 int active = (ctx->Polygon.StippleFlag && local
478 if (active) {
521 if (active)
    [all...]
i915_state.c 440 int active = (ctx->Polygon.StippleFlag && local
444 if (active) {
487 if (active)
1011 i915->state.active = (I915_UPLOAD_PROGRAM |
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPackageInstaller.java 60 sessionInfo.active = true;
  /external/swiftshader/src/OpenGL/libGL/
Program.h 182 bool active; member in struct:gl::Program::Sampler
  /external/swiftshader/src/Renderer/
SetupProcessor.cpp 134 if(semantic.active())
VertexProcessor.cpp 1007 state.output[i].xWrite = context->vertexShader->getOutput(i, 0).active();
1008 state.output[i].yWrite = context->vertexShader->getOutput(i, 1).active();
1009 state.output[i].zWrite = context->vertexShader->getOutput(i, 2).active();
1010 state.output[i].wWrite = context->vertexShader->getOutput(i, 3).active();
  /external/syslinux/gpxe/src/drivers/net/phantom/
nxhal_nic_interface.h 224 U32 active; member in struct:nx_rx_rule_s
  /external/v8/src/inspector/
v8-debugger-agent-impl.h 47 Response setBreakpointsActive(bool active) override;
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_kay.h 171 Boolean active; member in struct:ieee802_1x_kay
ieee802_1x_kay_i.h 87 /* used for active and potential participant */
93 Boolean active; member in struct:ieee802_1x_mka_participant
100 /* used for active participant */
  /frameworks/av/services/audioflinger/
PlaybackTracks.h 45 void appendDump(String8& result, bool active);
198 // but the slot is only used if track is active
  /frameworks/av/services/audiopolicy/service/
AudioPolicyInterfaceImpl.cpp 408 client->active = false;
489 // If UID inactive it records silence until becoming active
516 static constexpr char kAudioPolicyActiveSrc[] = "android.media.audiopolicy.active.src";
517 static constexpr char kAudioPolicyActivePkg[] = "android.media.audiopolicy.active.pkg";
519 "android.media.audiopolicy.active.session";
521 "android.media.audiopolicy.active.device";
538 // figure out who is active
549 if (other->active) {
550 // keeps the last of the clients marked active
579 client->active = true
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
RemoteInputController.java 37 * Keeps track of the currently active {@link RemoteInputView}s.
101 * Adds a currently active remote input.
103 * @param entry the entry for which a remote input is now active.
120 * Removes a currently active remote input.
188 * @return true if {@param entry} has an active RemoteInput
196 * @return true if any entry has an active RemoteInput
207 * @param remove if non-null, removes this entry from the active remote inputs
210 * @return true if {@param contains} is in the set of active remote inputs
278 default void onRemoteInputActive(boolean active) {}
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
UiAutomationManager.java 281 public void onFingerprintGestureDetectionActiveChanged(boolean active) {}
  /frameworks/base/services/core/jni/
com_android_server_HardwarePropertiesManagerService.cpp 228 list[i].active,

Completed in 552 milliseconds

<<11121314151617181920>>