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

1 2 3 4 5 6 7 8 91011>>

  /external/u-boot/arch/arm/dts/
omap3-beagle-xm-ab.dts 14 enable-active-high;
sun8i-h3-nanopi-neo.dts 53 allwinner,leds-active-low;
  /external/jemalloc_new/test/unit/
prof_idump.c 18 bool active; local
23 active = true;
24 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
25 sizeof(active)), 0,
prof_accum.c 53 bool active; local
60 active = true;
61 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
62 sizeof(active)), 0,
prof_gdump.c 18 bool active, gdump, gdump_old; local
24 active = true;
25 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
26 sizeof(active)), 0,
  /art/runtime/verifier/
scoped_newline.h 31 ScopedNewLine(ScopedNewLine&& other) : stream(other.stream), active(other.active) {
32 other.active = false;
39 if (active) {
46 DCHECK(active);
52 DCHECK(active);
58 bool active = true; member in struct:art::verifier::ScopedNewLine
  /external/clang/test/CodeGen/
2007-09-17-WeakRef.c 6 int active (void) function
2008-09-03-WeakAlias.c 5 int active (void) function
  /external/jemalloc/test/unit/
prof_idump.c 26 bool active; local
31 active = true;
32 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
33 sizeof(active)), 0,
prof_accum.c 63 bool active; local
70 active = true;
71 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
72 sizeof(active)), 0,
prof_gdump.c 24 bool active, gdump, gdump_old; local
30 active = true;
31 assert_d_eq(mallctl("prof.active", NULL, NULL, (void *)&active,
32 sizeof(active)), 0,
  /external/linux-kselftest/tools/testing/selftests/sync/
sync_wait.c 36 int valid, active, signaled, ret; local
53 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
54 ASSERT(active == 3, "Fence signaled too early!\n");
61 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
63 ASSERT(active == 2 && signaled == 1,
67 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
69 ASSERT(active == 1 && signaled == 2,
73 active = sync_fence_count_with_status(merged, FENCE_STATUS_ACTIVE);
75 ASSERT(active == 0 && signaled == 3,
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
SignatureRemover.java 38 private boolean active; field in class:SignatureRemover
41 * Creates a new remover which is active.
44 active = true;
48 * Defines whether this remover should be active. If it is not active it
51 * @param active
55 public void setActive(final boolean active) {
56 this.active = active;
67 return active && SIGNATURE_FILES.matcher(name).matches()
    [all...]
  /external/ltp/pan/
ltp-bump.c 48 char *active = NULL; local
56 active = malloc(strlen(optarg) + 1);
57 strcpy(active, optarg);
71 if (active == NULL) {
72 active = zoo_getname();
73 if (active == NULL) {
86 if ((zoo = zoo_open(active)) == NULL) {
  /cts/tests/tests/telephony/current/src/android/telephony/cts/
CarrierServiceTest.java 46 private void notifyCarrierNetworkChange(boolean active) {
48 mCarrierService.notifyCarrierNetworkChange(active);
49 fail("Expected SecurityException for notifyCarrierNetworkChange(" + active + ")");
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
Transliterator.properties 20 activateError=IME is already active
22 hideError=Cannot hide IME while active
23 disposeError=Cannot dispose IME while active
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioIODescriptorInterface.h 41 IoDescriptor& desc, Filter filter, bool& active, const DeviceVector& devices)
46 active = activeClients.size() > 0;
47 if (active && activeClients.size() == activeClientsWithRoute.size()) {
60 bool active; local
61 sp<DeviceDescriptor> curDevice = findPreferredDevice(desc, filter, active, devices);
62 if (active && curDevice == nullptr) {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_header_extension.h 32 : type(extension_type), length(0), active(true) {
36 HeaderExtension(RTPExtensionType extension_type, bool active)
37 : type(extension_type), length(0), active(active) {
68 bool active; member in struct:webrtc::HeaderExtension
80 // Active is a concept for a registered rtp header extension which doesn't
85 bool SetActive(const RTPExtensionType type, bool active);
112 int32_t Register(const RTPExtensionType type, const uint8_t id, bool active);
  /external/libcxx/test/support/
format_string.hpp 15 bool active; member in struct:format_string_detail::GuardVAList
16 GuardVAList(va_list& val) : xtarget(val), active(true) {}
19 if (active)
21 active = false;
24 if (active)
  /external/selinux/libselinux/utils/
getsebool.c 17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; local
75 active = security_get_boolean_active(names[i]);
76 if (active < 0) {
79 fprintf(stderr, "Error getting active value for %s\n",
98 if (pending != active) {
100 (active ? "on" : "off"),
104 (active ? "on" : "off"));
  /external/adhd/cras/src/server/
cras_bt_io.c 47 /* Returns the active profile specific iodev. */
50 struct bt_node *active = (struct bt_node *)iodev->active_node; local
52 return active->profile_dev;
85 * it has already been open for streaming, the new active profile will
108 /* Checks if bt device is active for the given profile.
287 /* If the first private iodev doesn't match the active profile stored on
295 struct bt_node *active = (struct bt_node *)iodev->active_node; local
297 if (device_using_profile(btio->device, active->profile))
303 if (n == active)
307 active->profile = n->profile
324 struct bt_node *active; local
504 struct bt_node *active, *btnode; local
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowRemoteCallbackList.java 99 Object[] active = activeBroadcast; local
100 if (active == null || active.length < N) {
101 activeBroadcast = active = new Object[N];
105 active[i++] = cb;
126 Object[] active = activeBroadcast; local
127 if (active != null) {
130 active[i] = null;
  /external/python/cpython2/Mac/Demo/mlte/
mlted.py 47 self.parent.active = self
50 self.parent.active = None
74 if self.parent.active == self:
75 self.parent.active = None
175 self.active = None
209 on = (self.active <> None)
217 on = self.active.have_selection()
223 on = self.active.can_paste()
228 on = self.active.can_undo()
238 on = self.active.can_redo(
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
ToggleControl.java 9 public void setActive(boolean active);
  /external/curl/docs/cmdline-opts/
ftp-ssl-ccc-mode.d 2 Arg: <active/passive>
10 the server. The active mode initiates the shutdown and waits for a reply from

Completed in 972 milliseconds

1 2 3 4 5 6 7 8 91011>>