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

12345678

/system/bt/packet/base/
H A Dpacket.h41 Packet(std::shared_ptr<const Packet> pkt, size_t start, size_t end) argument
42 : packet_start_index_(start), packet_end_index_(end), data_(pkt->data_){};
/system/bt/packet/tests/
H A Dpacket_test_helper.h50 std::vector<uint8_t> payload, size_t start, size_t end) {
53 pkt->packet_start_index_ = start;
49 Make( std::vector<uint8_t> payload, size_t start, size_t end) argument
/system/vold/
H A DNetlinkHandler.cpp35 int NetlinkHandler::start() { function in class:NetlinkHandler
H A DNetlinkManager.cpp49 int NetlinkManager::start() { function in class:NetlinkManager
85 if (mHandler->start()) {
86 PLOG(ERROR) << "Unable to start NetlinkHandler";
/system/connectivity/wificond/net/
H A Dnl80211_packet.h141 uint8_t* start = nullptr; local
146 id, &start, &end) ||
147 start == nullptr ||
151 *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/include/unwindstack/
H A DMapInfo.h36 MapInfo(uint64_t start, uint64_t end) : start(start), end(end) {} argument
37 MapInfo(uint64_t start, uint64_t end, uint64_t offset, uint64_t flags, const std::string& name) argument
38 : start(start),
46 uint64_t start = 0; member in struct:unwindstack::MapInfo
/system/core/libunwindstack/tools/
H A Dunwind_symbols.cpp116 uint64_t start = entry.second.offset + load_bias; local
118 for (uint64_t addr = start; addr < end; addr += 4) {
/system/core/logd/
H A DFlushCommand.h40 log_mask_t logMask, pid_t pid, log_time start,
47 mStart(start),
48 mTimeout((start != log_time::EPOCH) ? timeout : 0) {
39 FlushCommand(LogReader& reader, bool nonBlock, unsigned long tail, log_mask_t logMask, pid_t pid, log_time start, uint64_t timeout) argument
/system/extras/libperfmgr/tests/
H A DRequestGroupTest.cc41 auto start = std::chrono::steady_clock::now(); local
43 bool ret = req.AddRequest("INTERACTION", start + duration);
73 auto start = std::chrono::steady_clock::now(); local
75 bool ret = req.AddRequest("INTERACTION", start + duration);
77 ret = req.AddRequest("INTERACTION", start + duration + 1ms);
89 auto start = std::chrono::steady_clock::now(); local
91 bool ret = req.AddRequest("INTERACTION", start + duration);
100 ret = req.AddRequest("INTERACTION", start + shorter_duration);
108 ret = req.AddRequest("INTERACTION", start + duration);
118 auto start local
133 auto start = std::chrono::steady_clock::now(); local
150 auto start = std::chrono::steady_clock::now(); local
[all...]
H A DNodeTest.cc112 auto start = std::chrono::steady_clock::now(); local
113 EXPECT_TRUE(t.AddRequest(1, "INTERACTION", start + 200ms));
119 EXPECT_TRUE(t.AddRequest(0, "LAUNCH", start + 2000ms));
130 auto start = std::chrono::steady_clock::now(); local
131 EXPECT_TRUE(t.AddRequest(1, "INTERACTION", start + 500ms));
138 EXPECT_TRUE(t.AddRequest(0, "LAUNCH", start + 200ms));
160 auto start = std::chrono::steady_clock::now(); local
161 EXPECT_TRUE(t.AddRequest(1, "INTERACTION", start + 500ms));
168 EXPECT_TRUE(t.AddRequest(0, "LAUNCH", start + 200ms));
191 auto start local
[all...]
/system/extras/memory_replay/
H A DNativeInfo.cpp44 uintptr_t start, end; local
48 &start, &end, &name_pos) == 2) {
51 total_va_bytes += end - start;
/system/libhidl/base/
H A DTaskRunner.cpp31 void TaskRunner::start(size_t limit) { function in class:android::hardware::details::TaskRunner
/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/update_engine/payload_consumer/
H A Dextent_reader_unittest.cc160 size_t start = rand_r(&rand_seed) % blob.size(); local
161 size_t size = rand_r(&rand_seed) % (blob.size() - start);
162 EXPECT_TRUE(reader.Seek(start));
165 ASSERT_EQ(blob[i], result[start + i]);
/system/vold/model/
H A DEmulatedVolume.cpp105 nsecs_t start = systemTime(SYSTEM_TIME_BOOTTIME); local
111 if (nanoseconds_to_milliseconds(now - start) > 5000) {
/system/chre/host/common/
H A Dfragmented_load_transaction.cc33 * @param start the starting index of the subarray
39 const std::vector<uint8_t>& source, size_t start, size_t size) {
40 size_t end = std::min(source.size(), start + size);
44 source.begin() + start, source.begin() + end); // [start, end)
38 getSubVector( const std::vector<uint8_t>& source, size_t start, size_t size) argument
/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/adb/client/
H A Dmain.cpp86 // 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) {
/system/core/base/
H A Dchrono_utils_test.cpp57 auto start = boot_clock::now(); local
63 auto expected = std::chrono::duration_cast<std::chrono::milliseconds>(stop - start);
/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.c50 clock_t start = clock(); local
60 double cpu_time_used = ((double)(end - start)) / CLOCKS_PER_SEC;
H A Dufdt_overlay_test_app.c53 clock_t start = clock(); local
63 double cpu_time_used = ((double)(end - start)) / CLOCKS_PER_SEC;

Completed in 6529 milliseconds

12345678