Home
last modified time | relevance | path

Searched refs:active (Results 1 – 25 of 42) sorted by relevance

12

/system/core/trusty/storage/proxy/
Dcheckpoint_handling.cpp33 int is_data_checkpoint_active(bool* active) { in is_data_checkpoint_active() argument
34 if (!active) { in is_data_checkpoint_active()
39 *active = false; in is_data_checkpoint_active()
76 *active = true; in is_data_checkpoint_active()
Dcheckpoint_handling.h33 int is_data_checkpoint_active(bool* active);
/system/vold/bench/
Dbenchgen.py178 active = set() variable
190 active.add(handle)
203 if handle in active:
204 active.remove(handle)
209 if handle in active:
214 if handle in active:
219 if handle in active:
228 if handle in active:
237 if handle in active:
245 if handle in active:
[all …]
/system/logging/logd/
DPkgIds.cpp42 bool active = false; member
78 global->active = false; in WatchPackageList()
80 if (!global->active) { in WatchPackageList()
97 global->active = true; in WatchPackageList()
104 global->active = false; in WatchPackageList()
113 global->active = false; in WatchPackageList()
144 if (gPkgIdMap->active) { in uidToName()
/system/bpfprogs/
DtimeInState.c63 uint8_t freq_idx, uint32_t active, in update_uid() argument
74 key.bucket = active / CPUS_PER_ENTRY; in update_uid()
77 concurrent_val_t zero_val = {.active = {0}, .policy = {0}}; in update_uid()
81 if (ct) ct->active[active % CPUS_PER_ENTRY] += delta; in update_uid()
87 concurrent_val_t zero_val = {.active = {0}, .policy = {0}}; in update_uid()
121 uint32_t* active = bpf_nr_active_map_lookup_elem(&zero); variable
122 if (!active) return ALLOW;
132 uint32_t nactive = *active - 1;
136 __sync_fetch_and_add(active, 1);
149 __sync_fetch_and_add(active, -1);
Dtime_in_state_test.cpp29 int bpf_policy_nr_active_map_update_elem(uint32_t* policy, uint32_t* active, uint64_t flags);
68 std::vector<uint32_t> frequencies, bool active) { in initCpuPolicy() argument
87 if (active) { in initCpuPolicy()
137 ASSERT_EQ(expectedActive[i], value->active[i]); in assertConcurrentTimes()
139 ASSERT_EQ(0, value->active[i]); in assertConcurrentTimes()
/system/linkerconfig/modules/tests/
Dapex_test.cc255 modulePath="/data/apex/active/foo.apex" in TEST_F()
259 modulePath="/data/apex/active/sharedlibs.apex" in TEST_F()
282 modulePath="/data/apex/active/foo.apex" in TEST_F()
297 modulePath="/data/apex/active/foo.apex" in TEST_F()
311 modulePath="/data/apex/active/foo.apex" in TEST_F()
/system/nfc/tools/casimir/scripts/
Dt4at.py68 await self.active(packet.sender)
89 await self.active(response.sender)
102 async def active(self, peer: int): member in T4AT
/system/chre/apps/rpc_world/src/
Drpc_world_manager.cc90 CHRE_ASSERT(mIncrementCall.active()); in start()
96 CHRE_ASSERT(mTimerCall.active()); in start()
102 CHRE_ASSERT(mAddCall.active()); in start()
/system/apex/tests/testdata/
Dtrigger_reboot.sh4 active_apex=/data/apex/active/`/system/bin/getprop persist.debug.trigger_reboot_after_activation`
/system/bpf/progs/include/
Dbpf_timeinstate.h43 uint64_t active[CPUS_PER_ENTRY]; member
/system/memory/libmemunreachable/
DREADME.md6 …g every call to malloc and free, it queries the allocator (jemalloc) for active allocations when l…
136 5. Registers contents, active stack areas, and memory mapping information are collected.
141 …10. *Sweeper process*: A list of all active allocations is produced by examining the memory mappin…
155 - `HeapWalker.cpp`: Performs the mark-and-sweep pass over active allocations.
161 …quires a small interface to the allocator in order to collect information about active allocations.
165 - `malloc_iterate()`: call a callback on each active allocation in a given heap region.
/system/netd/server/
DTetherController.cpp655 existingEntry->active = true; in addForwardingPair()
661 .active = true in addForwardingPair()
672 existingEntry->active = false; in markForwardingPairDisabled()
678 return existingEntry != nullptr && existingEntry->active; in isForwardingPairEnabled()
684 if (it->second.active) { in isAnyForwardingEnabledOnUpstream()
693 if (it.second.active) { in isAnyForwardingPairEnabled()
931 (it.second.active ? "ACTIVE" : "DISABLED")); in dumpIfaces()
DTetherController.h42 bool active; member
/system/libbase/
Dscopeguard_test.cpp45 EXPECT_FALSE(scopeguard.active()); in TEST()
/system/libbase/include/android-base/
Dscopeguard.h51 constexpr bool active() const { return active_; } in active() function
/system/gsid/
Dgsid.rc13 chmod 0664 /metadata/gsi/dsu/active
/system/chre/host/common/test/
Dchre_test_rpc.cc130 if (!call.active()) { in main()
/system/update_engine/
DREADME.md37 other artifacts like [DLC]), has two copies. We call these two copies active (A)
38 and inactive (B). The system is booted into the active partition (depending on
41 the previously inactive partition becomes active and the old active partition
135 periodic update checks so we can have statistics on the number of active devices
141 partition and it is marked as active. At this point, after the reboot, the
164 * During an active update it periodically checkpoints the state of the update
168 * If it fails to apply a delta payload (due to bit changes on the active
171 The updater clients writes its active preferences in
214 system reboots. The latest active log is symlinked to
262 update generated by comparing the source image (the active partitions) and the
[all …]
/system/apex/apexd/
Dapexservice.cpp526 const auto& active = ::android::apex::GetActivePackages(); in getAllPackages() local
528 for (const ApexFile& pkg : active) { in getAllPackages()
537 if (std::find_if(active.begin(), active.end(), same_path) == active.end()) { in getAllPackages()
Dapexd.cpp1556 const std::vector<ApexFile>& active) { in CalculateInactivePackages() argument
1559 inactive.begin(), inactive.end(), [&active](const ApexFile& apex) { in CalculateInactivePackages()
1560 return std::any_of(active.begin(), active.end(), in CalculateInactivePackages()
1584 const std::vector<ApexFile> active(GetActivePackages()); in EmitApexInfoList() local
1590 inactive = CalculateInactivePackages(active); in EmitApexInfoList()
1594 CollectApexInfoList(xml, active, inactive); in EmitApexInfoList()
3875 std::vector<ApexFile> active(GetActivePackages()); in UpdateApexInfoList() local
3876 std::vector<ApexFile> inactive = CalculateInactivePackages(active); in UpdateApexInfoList()
3879 CollectApexInfoList(xml, active, inactive); in UpdateApexInfoList()
/system/libsysprop/srcs/android/sysprop/
DTelephonyProperties.sysprop445 # How many logical modems can be active simultaneously. For example, if a device is dual-SIM
446 # capable but currently only one SIM slot and one logical modem is active, this value is still
/system/sepolicy/private/
Dstatsd.te63 # /data/misc/stats-active-metric
/system/memory/lmkd/
DREADME.md108 active one).
/system/apex/docs/
DREADME.md593 decompressed APEX will be hard linked to the `/data/apex/active` directory.
597 `/data/apex/active`.
614 `/data/apex/active/com.android.foo@37.apex`.
616 for `/data/apex/active/com.android.foo@37.apex`.
625 version compared to what is currently active on the device, some free space must

12