Searched defs:start (Results 1 - 25 of 140) sorted by relevance

123456

/system/core/libunwindstack/
H A DMapInfo.h29 uint64_t start; member in struct:MapInfo
/system/libhidl/base/
H A DTaskRunner.cpp27 void TaskRunner::start(size_t limit) { function in class:android::hardware::details::TaskRunner
/system/chre/platform/linux/
H A Dplatform_nanoapp.cc24 bool PlatformNanoapp::start() { function in class:chre::PlatformNanoapp
/system/connectivity/wificond/net/
H A Dnl80211_packet.h133 uint8_t* start = nullptr; local
138 id, &start, &end) ||
139 start == nullptr ||
143 *attribute = NL80211Attr<T>(std::vector<uint8_t>(start, end));
H A Dnl80211_attribute.h44 // |*start| and |*end| are the start and end pointers of buffer where
174 // There is no document defining what the start index should be.
212 uint8_t* start = nullptr; local
216 id, &start, &end) ||
217 start == nullptr ||
221 *attribute = NL80211Attr<T>(std::vector<uint8_t>(start, end));
/system/connectivity/wifilogd/tests/
H A Dmessage_buffer_unittest.cpp55 const uint8_t* start; local
57 std::tie(start, len) = buffer_.ConsumeNextMessage();
58 return {start, start + len};
/system/core/libsysutils/src/
H A DServiceManager.cpp34 // a service is done by writing its name to the "ctl.start" system property
36 // service name is too long to fit in a property, you won't be able to start
40 /* The maximum amount of time to wait for a service to start or stop,
48 int ServiceManager::start(const char *name) { function in class:ServiceManager
60 android::base::SetProperty("ctl.start", name);
70 SLOGW("Timed out waiting for service '%s' to start", name);
/system/core/libunwindstack/tests/
H A DMemoryRemoteTest.cpp49 uint64_t start = NanoTime(); local
52 if ((NanoTime() - start) > 10 * NS_PER_SEC) {
/system/core/logd/
H A DFlushCommand.cpp30 unsigned int logMask, pid_t pid, log_time start,
37 mStart(start),
38 mTimeout((start != log_time::EPOCH) ? timeout : 0) {
29 FlushCommand(LogReader& reader, bool nonBlock, unsigned long tail, unsigned int logMask, pid_t pid, log_time start, uint64_t timeout) argument
/system/extras/memory_replay/
H A DNativeInfo.cpp42 uintptr_t start, end; local
46 &start, &end, &name_pos) == 2) {
49 total_va_bytes += end - start;
/system/netd/server/binder/android/net/
H A DUidRange.cpp35 UidRange::UidRange(int32_t start, int32_t stop) { argument
36 ALOG_ASSERT(start <= stop, "start UID must be less than or equal to stop UID");
37 mStart = start;
72 ALOG_ASSERT(uid <= mStop, "start UID must be less than or equal to stop UID");
79 ALOG_ASSERT(mStart <= uid, "stop UID must be greater than or equal to start UID");
/system/nfc/halimpl/bcm2079x/adaptation/
H A DSyncEvent.h43 ** Function: start
50 void start() { mMutex.lock(); } function in class:SyncEvent
113 ** Description: Automatically start and end a synchronization event.
128 event.start(); // automatically start operation
/system/vold/
H A DNetlinkHandler.cpp37 int NetlinkHandler::start() { function in class:NetlinkHandler
H A DNetlinkManager.cpp51 int NetlinkManager::start() { function in class:NetlinkManager
83 if (mHandler->start()) {
84 SLOGE("Unable to start NetlinkHandler: %s", strerror(errno));
H A DBenchmark.cpp87 nsecs_t start = systemTime(SYSTEM_TIME_BOOTTIME); local
120 nsecs_t create_d = create - start;
/system/chre/platform/shared/include/chre/platform/shared/
H A Dnanoapp_support_lib_dso.h91 chreNanoappStartFunction *start; member in struct:chreNslNanoappInfo::__anon1355
/system/connectivity/wificond/tests/integration/
H A Dbinder_dispatcher.cpp26 int convertDurationToMillis(const steady_clock::time_point& start, argument
29 std::chrono::duration_cast<std::chrono::milliseconds>(end - start)
/system/core/libbacktrace/
H A DBacktraceMap.cpp44 if (addr >= it->start && addr < it->end) {
53 uint64_t start; local
64 &start, &end, permissions, &name_pos) != 3) {
71 &start, &end, permissions, &name_pos) != 3) {
76 map->start = start;
94 ALOGV("Parsed map: start=%p, end=%p, flags=%x, name=%s",
95 reinterpret_cast<void*>(map->start), reinterpret_cast<void*>(map->end),
154 return map1.start < map2.start;
[all...]
H A DBacktraceOffline.h31 uint64_t start; member in struct:Space
52 stack_space_.start = stack.start;
H A DGetPss.cpp69 uintptr_t start, end; local
70 if (sscanf(line, "%" SCNxPTR "-%" SCNxPTR " ", &start, &end) != 2) {
74 for (off_t page = static_cast<off_t>(start/pagesize);
/system/core/libcutils/tests/
H A Dsched_policy_test.cpp49 auto start = std::chrono::steady_clock::now(); local
53 auto diff = end - start;
/system/extras/simpleperf/
H A Dread_elf_test.cpp48 char* start = data.data() + alignment; local
49 char* p = start;
58 ASSERT_TRUE(GetBuildIdFromNoteSection(start, p - start, &build_id));
/system/libufdt/tests/src/
H A Dfdt_overlay_test_app.c52 clock_t start = clock(); local
62 double cpu_time_used = ((double)(end - start)) / CLOCKS_PER_SEC;
H A Dufdt_overlay_test_app.c55 clock_t start = clock(); local
65 double cpu_time_used = ((double)(end - start)) / CLOCKS_PER_SEC;
/system/core/adb/client/
H A Dmain.cpp97 // adb start-server starts us up with stdout and stderr hooked up to
127 auto start = std::chrono::steady_clock::now(); local
133 if (std::chrono::steady_clock::now() - start > 0.5s) {

Completed in 692 milliseconds

123456