Searched defs:start (Results 101 - 125 of 140) sorted by relevance

123456

/system/bt/stack/a2dp/
H A Da2dp_vendor_ldac.cc177 // |start| is true for the first packet of a fragmented frame.
182 bool start, bool last,
188 if (start) *p_dst |= A2DP_LDAC_HDR_S_MSK;
181 A2DP_BuildMediaPayloadHeaderLdac(uint8_t* p_dst, bool frag, bool start, bool last, uint8_t num) argument
H A Da2dp_sbc.cc211 // |start| is true for the first packet of a fragmented frame.
216 bool start, bool last,
222 if (start) *p_dst |= A2DP_SBC_HDR_S_MSK;
239 * start: 1, if the starting packet of a fragmented frame.
215 A2DP_BuildMediaPayloadHeaderSbc(uint8_t* p_dst, bool frag, bool start, bool last, uint8_t num) argument
/system/bt/stack/sdp/
H A Dsdpint.h101 uint16_t start; member in struct:__anon1258
144 uint16_t next_attr_start_id; /* attr id to start with for the attr index in
/system/core/fs_mgr/
H A Dfs_mgr_verity.cpp212 params->ecc.start / FEC_BLOCKSIZE, params->ecc.blocks, params->ecc.roots);
217 params->ecc.start / FEC_BLOCKSIZE, params->ecc.blocks, params->ecc.roots);
367 static int metadata_add(FILE *fp, long start, const char *tag, argument
370 if (fseek(fp, start, SEEK_SET) < 0 ||
392 long start = 0x4000; /* skip cryptfs metadata area */ local
408 if (fseek(fp, start, SEEK_SET) < 0 ||
417 if (fseek(fp, start, SEEK_SET) < 0 ||
423 rc = metadata_add(fp, start + sizeof(magic), stag, slength, offset);
431 start += sizeof(magic);
439 start
[all...]
H A Dfs_mgr_fstab.cpp232 char *start = strchr(p, '='); local
233 if (start) {
234 flag_vals->verity_loc = strdup(start + 1);
/system/core/liblog/
H A Dfake_log_device.c501 const char* start = p; local
505 if ((p - start) > 0) {
506 v->iov_base = (void*)start;
507 v->iov_len = p - start;
508 totalLen += p - start;
/system/core/logd/
H A DLogBuffer.cpp464 { // start of scope for found iterator
474 { // start of scope for pid found iterator
1085 log_time LogBuffer::flushTo(SocketClient* reader, const log_time& start, argument
1095 if (start == log_time::EPOCH) {
1096 // client wants to start from the beginning
1100 log_time min = start - pruneMargin;
1105 // Client wants to start from some specified time. Chances are
1112 if (element->getRealTime() > start) {
1121 log_time max = start;
1147 if (element->getRealTime() <= start) {
[all...]
H A DLogKlog.cpp435 // compensated start time.
558 // sniff for start marker
559 const char* start = android::strnstr(p, len - (p - buf), klogdStr); local
560 if (start) {
561 uint64_t sig = strtoll(start + strlen(klogdStr), nullptr, 10);
597 start = p;
728 p = start;
/system/extras/ANRdaemon/
H A DANRdaemon.cpp368 ALOGD("High cpu usage, start logging.");
371 ALOGE("Failed to start tracing.");
421 * Main loop to moniter the cpu usage and decided whether to start logging.
423 static void start(void) { function
512 " -t N cpu threshold for logging to start "
635 start();
/system/extras/ext4_utils/
H A Dallocate.c200 static int reserve_blocks(struct block_group_info *bg, u32 bg_num, u32 start, u32 num) argument
204 u32 block = start;
/system/extras/f2fs_utils/
H A Df2fs_sparseblock.c161 static int read_structure(int fd, unsigned long long start, void *buf, ssize_t len) argument
165 ret = lseek64(fd, start, SEEK_SET);
281 /* The second checkpoint pack should start at the next segment */
/system/extras/ioshark/
H A Dioshark_bench.c434 struct timeval start; local
436 (void)gettimeofday(&start, (struct timezone *)NULL);
438 update_delta_time(&start, &total_delay_time);
582 printf("Entire Dataset fits start = %d to %d, free_bytes = %ju\n",
813 struct timeval start; local
815 (void)gettimeofday(&start, (struct timezone *)NULL);
817 update_delta_time(&start, &aggregate_file_remove_time);
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
H A Devent.h26 u64 start; member in struct:mmap_event
36 u64 start; member in struct:mmap2_event
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
H A Devent.h14 u64 start; member in struct:mmap_event
23 u64 start; member in struct:mmap2_event
/system/netd/server/
H A DNetdNativeService.cpp99 status_t NetdNativeService::start() { function in class:android::net::NetdNativeService
H A DSockDiagTest.cpp474 auto start = std::chrono::steady_clock::now(); local
488 std::chrono::duration_cast<ms>(std::chrono::steady_clock::now() - start).count());
490 start = std::chrono::steady_clock::now();
493 std::chrono::duration_cast<ms>(std::chrono::steady_clock::now() - start).count());
495 start = std::chrono::steady_clock::now();
502 std::chrono::duration_cast<ms>(std::chrono::steady_clock::now() - start).count(),
508 start = std::chrono::steady_clock::now();
514 std::chrono::duration_cast<ms>(std::chrono::steady_clock::now() - start).count());
/system/nfc/halimpl/bcm2079x/gki/ulinux/
H A Dgki_ulinux.c382 ** Parameters: start: TRUE start system tick (again), FALSE stop
387 void gki_system_tick_start_stop_cback(bool start) { argument
391 if (start == false) {
500 /* register start stop function which disable timer loop in GKI_run() when no
/system/nfc/src/gki/ulinux/
H A Dgki_ulinux.c382 ** Parameters: start: TRUE start system tick (again), FALSE stop
387 void gki_system_tick_start_stop_cback(bool start) { argument
391 if (start == false) {
480 /* register start stop function which disable timer loop in GKI_run() when no
/system/update_engine/payload_generator/
H A Dinplace_generator.cc82 // Helper class to compare two operations by start block of the first Extent in
304 uint64_t start = extent.start_block(); local
306 if (start >= kTempBlockStart || (start + num) >= kTempBlockStart) {
308 LOG(ERROR) << "start: " << start << ", num: " << num;
314 CHECK(start <= (start + num));
/system/vold/
H A DUtils.cpp127 // we start sending signals
214 const char* start = strstr(cline, "TYPE="); local
215 if (start != nullptr && sscanf(start + 5, "\"%127[^\"]\"", value) == 1) {
219 start = strstr(cline, "UUID=");
220 if (start != nullptr && sscanf(start + 5, "\"%127[^\"]\"", value) == 1) {
224 start = strstr(cline, "LABEL=");
225 if (start != nullptr && sscanf(start
[all...]
/system/core/init/
H A Ddevices.cpp311 * given a path that may start with a platform device, find the length of the
312 * platform device prefix. If it doesn't start with a platform device, return
362 /* Given a path that may start with a PCI device, populate the supplied buffer
364 * If it doesn't start with a PCI device, or there is some error, return -1 */
367 const char *start, *end; local
373 start = path + 9;
377 end = strchr(start, '/');
385 if (end - start + 1 > buf_sz)
388 strncpy(buf, start, end - start);
399 const char *start, *end; local
[all...]
H A Dinit.cpp186 if (msg == "start") {
343 static bool __attribute__((unused)) set_mmap_rnd_bits_min(int start, int min, bool compat) { argument
351 return set_highest_available_option_value(path, min, start);
1114 // ... so that we can start queuing up actions that require stuff from /dev.
1128 // Don't mount filesystems or start core system services in charger mode.
/system/core/libbacktrace/
H A Dbacktrace_test.cpp104 uint64_t start = NanoTime(); local
108 if ((NanoTime() - start) > NS_PER_SEC) {
220 uint64_t start = NanoTime(); local
225 } while ((NanoTime() - start) < seconds * NS_PER_SEC);
315 uint64_t start = NanoTime(); local
342 } while (!verified && (NanoTime() - start) <= 5 * NS_PER_SEC);
453 uint64_t start = NanoTime(); local
459 ((NanoTime() - start) <= 5 * NS_PER_SEC));
766 map.start = 1;
774 ASSERT_EQ(static_cast<uintptr_t>(0), map.start);
876 uintptr_t start; member in struct:map_test_t
1070 uint64_t start = NanoTime(); local
1239 uint64_t start = NanoTime(); local
1366 uint64_t start = NanoTime(); local
1649 uint64_t start = NanoTime(); local
[all...]
/system/media/camera/src/
H A Dcamera_metadata.c81 * | start of camera_metadata.data |
466 ALOGE("%s: Entry start + capacity (%" PRIu32 ") should be <= data start "
479 ALOGE("%s: Data start + capacity (%" PRIu32 ") should be <= total size "
794 uint8_t *start = get_data(dst) + entry->data.offset; local
795 uint8_t *end = start + data_bytes;
797 memmove(start, end, length);
849 uint8_t *start = get_data(dst) + entry->data.offset; local
850 uint8_t *end = start + entry_bytes;
852 memmove(start, en
[all...]
/system/nfc/src/nfa/int/
H A Dnfa_dta_int.h167 tNFA_DTA_API_START start; member in union:__anon2162
226 /* Automatically start discovery when NFC is enabled */

Completed in 1442 milliseconds

123456