Home
last modified time | relevance | path

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

12

/hardware/qcom/sdm845/gps/sdm845/android/
DAGnss.cpp39 IAGnssCallback::AGnssStatusIpV4 st = {}; in agnssStatusIpV4Cb() local
43 st.type = IAGnssCallback::AGnssType::TYPE_SUPL; in agnssStatusIpV4Cb()
46 st.type = IAGnssCallback::AGnssType::TYPE_C2K; in agnssStatusIpV4Cb()
55 st.status = IAGnssCallback::AGnssStatusValue::REQUEST_AGNSS_DATA_CONN; in agnssStatusIpV4Cb()
58 st.status = IAGnssCallback::AGnssStatusValue::RELEASE_AGNSS_DATA_CONN; in agnssStatusIpV4Cb()
61 st.status = IAGnssCallback::AGnssStatusValue::AGNSS_DATA_CONNECTED; in agnssStatusIpV4Cb()
64 st.status = IAGnssCallback::AGnssStatusValue::AGNSS_DATA_CONN_DONE; in agnssStatusIpV4Cb()
67 st.status = IAGnssCallback::AGnssStatusValue::AGNSS_DATA_CONN_FAILED; in agnssStatusIpV4Cb()
73 st.ipV4Addr = status.ipV4Addr; in agnssStatusIpV4Cb()
75 auto r = sAGnssCbIface->agnssStatusIpV4Cb(st); in agnssStatusIpV4Cb()
/hardware/qcom/wlan/qcwcn/wcnss-service/
Dwcnss_service.c99 struct stat st; in wcnss_write_cal_data() local
105 rc = stat(WCNSS_CAL_FILE, &st); in wcnss_write_cal_data()
112 size = st.st_size; in wcnss_write_cal_data()
235 struct stat st; in find_full_path() local
247 rc = lstat(dr->d_name, &st); in find_full_path()
252 if (S_ISDIR(st.st_mode)) { in find_full_path()
368 struct stat st; in setup_wcnss_parameters() local
405 rc = stat(WCNSS_FACT_FILE, &st); in setup_wcnss_parameters()
412 rc = stat(WCNSS_CAL_FILE, &st); in setup_wcnss_parameters()
/hardware/interfaces/wifi/1.3/default/
Dwifi_chip.cpp167 bool cpioWriteHeader(int out_fd, struct stat& st, const char* file_name, in cpioWriteHeader() argument
173 kCpioMagic, static_cast<int>(st.st_ino), st.st_mode, st.st_uid, in cpioWriteHeader()
174 st.st_gid, static_cast<int>(st.st_nlink), in cpioWriteHeader()
175 static_cast<int>(st.st_mtime), static_cast<int>(st.st_size), in cpioWriteHeader()
176 major(st.st_dev), minor(st.st_dev), major(st.st_rdev), in cpioWriteHeader()
177 minor(st.st_rdev), static_cast<uint32_t>(file_name_len), 0); in cpioWriteHeader()
200 size_t cpioWriteFileContent(int fd_read, int out_fd, struct stat& st) { in cpioWriteFileContent() argument
203 ssize_t llen = st.st_size; in cpioWriteFileContent()
223 llen = st.st_size % 4; in cpioWriteFileContent()
268 struct stat st; in cpioArchiveFilesInDir() local
[all …]
/hardware/qcom/msm8998/gpt-utils/
Dgpt-utils.cpp662 struct stat st; in gpt_utils_set_xbl_boot_partition() local
670 if (!stat(XBL_BACKUP, &st)) in gpt_utils_set_xbl_boot_partition()
672 else if (!stat(XBL_AB_SECONDARY, &st)) in gpt_utils_set_xbl_boot_partition()
681 if (!stat(XBL_PRIMARY, &st)) in gpt_utils_set_xbl_boot_partition()
683 else if (!stat(XBL_AB_PRIMARY, &st)) in gpt_utils_set_xbl_boot_partition()
696 if((stat(XBL_PRIMARY, &st) || in gpt_utils_set_xbl_boot_partition()
697 stat(XBL_BACKUP, &st)) && in gpt_utils_set_xbl_boot_partition()
698 (stat(XBL_AB_PRIMARY, &st) || in gpt_utils_set_xbl_boot_partition()
699 stat(XBL_AB_SECONDARY, &st))) { in gpt_utils_set_xbl_boot_partition()
927 struct stat st; in add_lun_to_update_list() local
[all …]
/hardware/interfaces/camera/device/3.5/default/
DExternalCameraDeviceSession.cpp120 auto st = mRequestDoneCond.wait_for(lk, timeout); in waitForBufferRequestDone() local
121 if (st == std::cv_status::timeout) { in waitForBufferRequestDone()
141 auto st = mRequestCond.wait_for(lk, timeout); in waitForNextRequest() local
142 if (st == std::cv_status::timeout) { in waitForNextRequest()
/hardware/qcom/bootctrl/
Dboot_control.cpp137 struct stat st; in update_slot_attribute() local
170 if (stat(buf, &st)) { in update_slot_attribute()
181 if (stat(buf, &st)) { in update_slot_attribute()
401 struct stat st; in boot_ctl_set_active_slot_for_partitions() local
419 if (stat(buf, &st)) in boot_ctl_set_active_slot_for_partitions()
425 if (stat(buf, &st)) in boot_ctl_set_active_slot_for_partitions()
/hardware/qcom/audio/legacy/alsa_sound/
DAudioUsbALSA.cpp102 struct stat st; in getCap() local
103 memset(&st, 0x0, sizeof(struct stat)); in getCap()
112 if (fstat(fd, &st) < 0) { in getCap()
118 fileSize = st.st_size; in getCap()
/hardware/interfaces/camera/device/3.4/default/
DExternalCameraDeviceSession.cpp578 Status st = importBufferLocked( in importRequestLockedImpl() local
581 if (st != Status::OK) { in importRequestLockedImpl()
583 return st; in importRequestLockedImpl()
611 auto st = mV4L2BufferReturned.wait_for(lk, timeout); in waitForV4L2BufferReturnLocked() local
618 if (st == std::cv_status::timeout) { in waitForV4L2BufferReturnLocked()
1860 Status st = parent->processCaptureRequestError(req); in threadLoop() local
1861 if (st != Status::OK) { in threadLoop()
1973 Status st = parent->processCaptureResult(req); in threadLoop() local
1974 if (st != Status::OK) { in threadLoop()
2080 auto st = mRequestDoneCond.wait_for(lk, timeout); in flush() local
[all …]
/hardware/qcom/audio/legacy/libalsa-intf/
Dalsa_ucm.c2122 struct stat st; in second_stage_parsing_thread() local
2136 if (fstat(fd, &st) < 0) { in second_stage_parsing_thread()
2141 read_buf = (char *) mmap(0, st.st_size, PROT_READ | PROT_WRITE, in second_stage_parsing_thread()
2249 munmap(read_buf, st.st_size); in second_stage_parsing_thread()
2281 struct stat st; in snd_ucm_parse() local
2295 if (fstat(fd, &st) < 0) { in snd_ucm_parse()
2300 read_buf = (char *) mmap(0, st.st_size, PROT_READ | PROT_WRITE, in snd_ucm_parse()
2313 munmap(read_buf, st.st_size); in snd_ucm_parse()
2320 munmap(read_buf, st.st_size); in snd_ucm_parse()
2328 munmap(read_buf, st.st_size); in snd_ucm_parse()
[all …]
/hardware/interfaces/camera/device/3.5/
DICameraDeviceCallback.hal58 generates (BufferRequestStatus st, vec<StreamBufferRet> buffers);
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/sdm845/gps/msm8909/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/sdm845/gps/msm8960/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/sdm845/gps/msm8996/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/sdm845/gps/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/gps/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/sdm845/gps/msm8994/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/sdm845/gps/msm8084/loc_api/libloc_api_50001/
Dloc_eng_msg.h98 enum loc_sess_status st,
/hardware/qcom/msm8994/kernel-headers/linux/
Dfuse.h346 struct fuse_kstatfs st; member
/hardware/qcom/msm8996/kernel-headers/linux/
Dfuse.h361 struct fuse_kstatfs st; member
/hardware/qcom/msm8996/original-kernel-headers/linux/
Dfuse.h535 struct fuse_kstatfs st; member

12