Home
last modified time | relevance | path

Searched refs:c_str (Results 1 – 25 of 1160) sorted by relevance

12345678910>>...47

/hardware/google/gfxstream/host/gl/gl-host-common/opengl/
Dgpuinfo_unittest.cpp412 EXPECT_STREQ("10de", nvidia_info.make.c_str()); in TEST()
413 EXPECT_STREQ("NVIDIA Quadro K600", nvidia_info.model.c_str()); in TEST()
414 EXPECT_STREQ("0ffa", nvidia_info.device_id.c_str()); in TEST()
416 EXPECT_STREQ("9.18.13.2086", nvidia_info.version.c_str()); in TEST()
420 EXPECT_STREQ("nvd3dumx.dll", nvidia_info.dlls[0].c_str()); in TEST()
421 EXPECT_STREQ("nvwgf2umx.dll", nvidia_info.dlls[1].c_str()); in TEST()
422 EXPECT_STREQ("nvwgf2umx.dll", nvidia_info.dlls[2].c_str()); in TEST()
423 EXPECT_STREQ("nvd3dum", nvidia_info.dlls[3].c_str()); in TEST()
424 EXPECT_STREQ("nvwgf2um", nvidia_info.dlls[4].c_str()); in TEST()
425 EXPECT_STREQ("nvwgf2um", nvidia_info.dlls[5].c_str()); in TEST()
[all …]
/hardware/google/pixel/power-libperfmgr/aidl/
DAppDescriptorTrace.h45 trace_pid_err = StringPrintf("adpf.%s-%s", idString.c_str(), "pid.err"); in AppDescriptorTrace()
46 trace_pid_integral = StringPrintf("adpf.%s-%s", idString.c_str(), "pid.integral"); in AppDescriptorTrace()
47 trace_pid_derivative = StringPrintf("adpf.%s-%s", idString.c_str(), "pid.derivative"); in AppDescriptorTrace()
48 trace_pid_pOut = StringPrintf("adpf.%s-%s", idString.c_str(), "pid.pOut"); in AppDescriptorTrace()
49 trace_pid_iOut = StringPrintf("adpf.%s-%s", idString.c_str(), "pid.iOut"); in AppDescriptorTrace()
50 trace_pid_dOut = StringPrintf("adpf.%s-%s", idString.c_str(), "pid.dOut"); in AppDescriptorTrace()
51 trace_pid_output = StringPrintf("adpf.%s-%s", idString.c_str(), "pid.output"); in AppDescriptorTrace()
52 trace_target = StringPrintf("adpf.%s-%s", idString.c_str(), "target"); in AppDescriptorTrace()
53 trace_active = StringPrintf("adpf.%s-%s", idString.c_str(), "active"); in AppDescriptorTrace()
54 trace_add_threads = StringPrintf("adpf.%s-%s", idString.c_str(), "add_threads"); in AppDescriptorTrace()
[all …]
DPowerHintSession.cpp119 ATRACE_INT(mAppDescriptorTrace->trace_pid_err.c_str(), err_sum / (length - p_start)); in convertWorkDurationToBoostByPid()
120 ATRACE_INT(mAppDescriptorTrace->trace_pid_integral.c_str(), integral_error); in convertWorkDurationToBoostByPid()
121 ATRACE_INT(mAppDescriptorTrace->trace_pid_derivative.c_str(), in convertWorkDurationToBoostByPid()
123 ATRACE_INT(mAppDescriptorTrace->trace_pid_pOut.c_str(), pOut); in convertWorkDurationToBoostByPid()
124 ATRACE_INT(mAppDescriptorTrace->trace_pid_iOut.c_str(), iOut); in convertWorkDurationToBoostByPid()
125 ATRACE_INT(mAppDescriptorTrace->trace_pid_dOut.c_str(), dOut); in convertWorkDurationToBoostByPid()
126 ATRACE_INT(mAppDescriptorTrace->trace_pid_output.c_str(), output); in convertWorkDurationToBoostByPid()
154 ATRACE_INT(mAppDescriptorTrace->trace_target.c_str(), mDescriptor->targetNs.count()); in PowerHintSession()
155 ATRACE_INT(mAppDescriptorTrace->trace_active.c_str(), mDescriptor->is_active.load()); in PowerHintSession()
168 ALOGV("PowerHintSession created: %s", mDescriptor->toString().c_str()); in PowerHintSession()
[all …]
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/userhal/
DFakeUserHal.cpp78 ALOGV("onSetProperty(): %s", toString(value).c_str()); in onSetProperty()
100 ALOGV("onGetProperty(%s)", toString(value).c_str()); in onGetProperty()
122 toString(*mSetUserIdentificationAssociationResponseFromCmd).c_str()); in onGetUserIdentificationAssociation()
130 ALOGE("get(USER_IDENTIFICATION_ASSOCIATION): no requestId on %s", toString(value).c_str()); in onGetUserIdentificationAssociation()
140 requestId.error().message().c_str()); in onSetInitialUserInfoResponse()
145 ALOGD("set(INITIAL_USER_INFO) called from lshal; storing it: %s", toString(value).c_str()); in onSetInitialUserInfoResponse()
150 ALOGD("set(INITIAL_USER_INFO) called from Android: %s", toString(value).c_str()); in onSetInitialUserInfoResponse()
153 toString(*mInitialUserResponseFromCmd).c_str()); in onSetInitialUserInfoResponse()
163 toString(*updatedValue).c_str()); in onSetInitialUserInfoResponse()
172 requestId.error().message().c_str()); in onSetSwitchUserResponse()
[all …]
/hardware/google/gfxstream/codegen/generic-apigen/
DApiGen.cpp71 FILE *fp = fopen(filename.c_str(), "wt"); in genProcTypes()
73 perror(filename.c_str()); in genProcTypes()
78 const char* basename = m_basename.c_str(); in genProcTypes()
97 … fprintf(fp, " (%s_APIENTRY *%s_%s_proc_t) (", basename, e->name().c_str(), sideString(side)); in genProcTypes()
115 … fprintf(fp, " (%s_APIENTRY *%s_dec_%s_proc_t) (", basename, e->name().c_str(), sideString(side)); in genProcTypes()
135 FILE *fp = fopen(filename.c_str(), "wt"); in genFuncTable()
137 perror(filename.c_str()); in genFuncTable()
142 fprintf(fp, "#ifndef __%s_%s_ftable_t_h\n", m_basename.c_str(), sideString(side)); in genFuncTable()
143 fprintf(fp, "#define __%s_%s_ftable_t_h\n", m_basename.c_str(), sideString(side)); in genFuncTable()
145 fprintf(fp, "static const struct _%s_funcs_by_name {\n", m_basename.c_str()); in genFuncTable()
[all …]
DEntryPoint.cpp69 field.c_str(), in parse()
70 error.c_str()); in parse()
76 fprintf(stderr, "UNKNOWN retval: %s\n", linestr.c_str()); in parse()
105 field.c_str(), in parse()
106 error.c_str()); in parse()
112 fprintf(stderr, "%d: Unknown type: %s\n", lc, vartype.c_str()); in parse()
134 m_retval.type()->name().c_str(), in print()
135 name_prefix.c_str(), in print()
136 m_name.c_str(), in print()
137 name_suffix.c_str()); in print()
[all …]
/hardware/interfaces/health/1.0/default/
Dconvert.cpp29 config.batteryStatusPath = hc->batteryStatusPath.c_str(); in convertToHealthConfig()
30 config.batteryHealthPath = hc->batteryHealthPath.c_str(); in convertToHealthConfig()
31 config.batteryPresentPath = hc->batteryPresentPath.c_str(); in convertToHealthConfig()
32 config.batteryCapacityPath = hc->batteryCapacityPath.c_str(); in convertToHealthConfig()
33 config.batteryVoltagePath = hc->batteryVoltagePath.c_str(); in convertToHealthConfig()
34 config.batteryTemperaturePath = hc->batteryTemperaturePath.c_str(); in convertToHealthConfig()
35 config.batteryTechnologyPath = hc->batteryTechnologyPath.c_str(); in convertToHealthConfig()
36 config.batteryCurrentNowPath = hc->batteryCurrentNowPath.c_str(); in convertToHealthConfig()
37 config.batteryCurrentAvgPath = hc->batteryCurrentAvgPath.c_str(); in convertToHealthConfig()
38 config.batteryChargeCounterPath = hc->batteryChargeCounterPath.c_str(); in convertToHealthConfig()
[all …]
/hardware/google/graphics/common/libhwc2.1/
DExynosHWCDebug.h80 ALOGD("%s", log.c_str()); \
81 if (CC_UNLIKELY(ATRACE_ENABLED())) ATRACE_NAME(log.c_str()); \
111 ALOGD("%s:: [%s] " msg, __func__, mDisplayName.c_str(), ##__VA_ARGS__); \
121 ALOGD("%s:: [%s][%d] " msg, __func__, mName.c_str(), mLogicalIndex, ##__VA_ARGS__); \
124 #define DISPLAY_LOGV(msg, ...) ALOGV("[%s] " msg, mDisplayName.c_str(), ##__VA_ARGS__)
125 #define DISPLAY_LOGI(msg, ...) ALOGI("[%s] " msg, mDisplayName.c_str(), ##__VA_ARGS__)
126 #define DISPLAY_LOGW(msg, ...) ALOGW("[%s] " msg, mDisplayName.c_str(), ##__VA_ARGS__)
129 ALOGE("[%s] " msg, mDisplayName.c_str(), ##__VA_ARGS__); \
136 ALOGI("[%s] " msg, mExynosDisplay->mDisplayName.c_str(), ##__VA_ARGS__)
138 ALOGW("[%s] " msg, mExynosDisplay->mDisplayName.c_str(), ##__VA_ARGS__)
[all …]
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/userhal/src/
DFakeUserHal.cpp90 ALOGV("onSetProperty(): %s", value.toString().c_str()); in onSetProperty()
111 ALOGV("onGetProperty(%s)", value.toString().c_str()); in onGetProperty()
135 mSetUserIdentificationAssociationResponseFromCmd->toString().c_str()); in onGetUserIdentificationAssociation()
142 ALOGE("get(USER_IDENTIFICATION_ASSOCIATION): no requestId on %s", value.toString().c_str()); in onGetUserIdentificationAssociation()
155 requestId.error().message().c_str()); in onSetInitialUserInfoResponse()
160 ALOGD("set(INITIAL_USER_INFO) called from lshal; storing it: %s", value.toString().c_str()); in onSetInitialUserInfoResponse()
165 ALOGD("set(INITIAL_USER_INFO) called from Android: %s", value.toString().c_str()); in onSetInitialUserInfoResponse()
168 mInitialUserResponseFromCmd->toString().c_str()); in onSetInitialUserInfoResponse()
179 updatedValue->toString().c_str()); in onSetInitialUserInfoResponse()
189 requestId.error().message().c_str()); in onSetSwitchUserResponse()
[all …]
/hardware/interfaces/audio/common/all-versions/default/service/
Dservice.cpp56 handle = dlopen(libPath.c_str(), dlMode); in registerExternalServiceImplementation()
59 ALOGE("Failed to dlopen %s: %s", libPath.c_str(), in registerExternalServiceImplementation()
64 *(void**)(&factoryFunction) = dlsym(handle, funcName.c_str()); in registerExternalServiceImplementation()
67 ALOGE("Factory function %s not found in libName %s: %s", funcName.c_str(), libPath.c_str(), in registerExternalServiceImplementation()
152 "Could not register %s", interfaceFamilyName.c_str()); in main()
159 "Could not register %s", interfaceFamilyName.c_str()); in main()
166 ALOGI("%s() from %s success", interfaceLoaderFuncName.c_str(), libraryName.c_str()); in main()
168 ALOGW("%s() from %s failed", interfaceLoaderFuncName.c_str(), libraryName.c_str()); in main()
/hardware/google/pixel/pixelstats/
DChargeStatsReporter.cpp86 ALOGD("processing %s", line.c_str()); in ReportChargeStats()
87 if (sscanf(line.c_str(), CHG_STATS_FMT2, &tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], &tmp[5], in ReportChargeStats()
93 } else if (sscanf(line.c_str(), CHG_STATS_FMT1, &tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], in ReportChargeStats()
100 } else if (sscanf(line.c_str(), CHG_STATS_FMT0, &tmp[0], &tmp[1], &tmp[2], &tmp[3], &tmp[4], in ReportChargeStats()
102 ALOGE("Couldn't process %s", line.c_str()); in ReportChargeStats()
108 ALOGD("wlc: processing %s", wline_at.c_str()); in ReportChargeStats()
109 if (sscanf(wline_at.c_str(), "A:%d", &ssoc_tmp) != 1) { in ReportChargeStats()
110 ALOGE("Couldn't process %s", wline_at.c_str()); in ReportChargeStats()
113 ALOGD("wlc: processing %s", wline_ac.c_str()); in ReportChargeStats()
114 if (sscanf(wline_ac.c_str(), "D:%x,%x,%x,%x,%x, %x,%x", &tmp[10], &tmp[11], &tmp[12], in ReportChargeStats()
[all …]
DPcaChargeStats.cpp40 if (!ReadFileToString(path.c_str(), file_contents)) { in CheckPcaContentsAndAck()
41 if (!ReadFileToString(kPca94xxChargeMetricsPath.c_str(), file_contents)) { in CheckPcaContentsAndAck()
46 if (!ReadFileToString(path.c_str(), file_contents)) { in CheckPcaContentsAndAck()
54 ALOGE("Unable to read first line %s - %s", path.c_str(), strerror(errno)); in CheckPcaContentsAndAck()
57 if (!WriteStringToFile(std::to_string(0), path.c_str())) { in CheckPcaContentsAndAck()
58 ALOGE("Couldn't clear %s - %s", path.c_str(), strerror(errno)); in CheckPcaContentsAndAck()
/hardware/google/aemu/base/include/aemu/base/testing/
DTestTempDir.h86 if (android_mkdir(temp_dir.c_str(), 0755) != 0) { in TestTempDir()
88 temp_dir.c_str()); in TestTempDir()
107 const char* path() const { return mPath.size() ? mPath.c_str() : NULL; } in path()
123 return StringFormat("%s/%s", mPath.c_str(), subpath.c_str()); in makeSubPath()
129 if (android_mkdir(path.c_str(), 0755) < 0) { in makeSubDir()
139 int fd = ::android_open(path.c_str(), O_WRONLY | O_CREAT, 0744); in makeSubFile()
156 DIR* dir = opendir(path.c_str()); in DeleteRecursive()
169 android_lstat(entry_path.c_str(), in DeleteRecursive()
173 android_lstat(entry_path.c_str(), &stats); in DeleteRecursive()
179 android_unlink(entry_path.c_str()); in DeleteRecursive()
[all …]
/hardware/google/aemu/base/
DStringFormat_unittest.cpp24 EXPECT_STREQ("", s.c_str()); in TEST()
29 EXPECT_STREQ("foobar", s.c_str()); in TEST()
34 EXPECT_STREQ("Pi is about 3.1415\n", s.c_str()); in TEST()
44 std::string s2 = std::string(s.c_str() + n * kPieceLen, kPieceLen); in TEST()
45 EXPECT_STREQ(kPiece, s2.c_str()) << "Index #" << n; in TEST()
53 EXPECT_STREQ("foo", s.c_str()); in TEST()
60 EXPECT_STREQ("foobar", s.c_str()); in TEST()
74 std::string s2 = std::string(s.c_str() + n * kPieceLen, kPieceLen); in TEST()
75 EXPECT_STREQ(kPiece, s2.c_str()) << "Index #" << n; in TEST()
/hardware/google/camera/common/hal/utils/
Dresult_dispatcher.cc48 std::string(name).c_str(), __FUNCTION__); in Create()
77 ALOGE("[%s] %s: SetRealtimeThread fail", name_.c_str(), __FUNCTION__); in ResultDispatcher()
79 ALOGI("[%s] %s: SetRealtimeThread OK", name_.c_str(), __FUNCTION__); in ResultDispatcher()
108 ALOGE("[%s] %s: Adding a pending request failed: %s(%d).", name_.c_str(), in AddPendingRequest()
125 name_.c_str(), __FUNCTION__, frame_number, strerror(-res), res); in AddPendingRequestLocked()
132 name_.c_str(), __FUNCTION__, frame_number, strerror(-res), res); in AddPendingRequestLocked()
140 name_.c_str(), __FUNCTION__, frame_number, strerror(-res), res); in AddPendingRequestLocked()
149 name_.c_str(), __FUNCTION__, frame_number, strerror(-res), res); in AddPendingRequestLocked()
161 name_.c_str(), __FUNCTION__, frame_number); in AddPendingShutterLocked()
175 name_.c_str(), __FUNCTION__, frame_number); in AddPendingFinalResultMetadataLocked()
[all …]
/hardware/libhardware/modules/sensors/dynamic_sensor/
DBaseDynamicSensorDaemon.cpp29 ALOGV("device %s is connected", deviceKey.c_str()); in onConnectionChange()
33 ALOGI("no valid sensor is defined in device %s, ignore", deviceKey.c_str()); in onConnectionChange()
43 ALOGV("device %s is registered", deviceKey.c_str()); in onConnectionChange()
47 ALOGD("device %s already added and is connected again, ignore", deviceKey.c_str()); in onConnectionChange()
50 ALOGV("device %s is disconnected", deviceKey.c_str()); in onConnectionChange()
59 ALOGV("device %s is unregistered", deviceKey.c_str()); in onConnectionChange()
/hardware/google/pixel/usb/
DUsbDpUtils.cpp403 displayPortDp = opendir(portPartnerPath.c_str()); in getDisplayPortUsbPathHelper()
435 if (!strncmp(attribute.c_str(), "hpd", strlen("hpd")) || in readDisplayPortAttribute()
436 !strncmp(attribute.c_str(), "pin_assignment", strlen("pin_assignment"))) { in readDisplayPortAttribute()
438 } else if (!strncmp(attribute.c_str(), "link_status", strlen("link_status"))) { in readDisplayPortAttribute()
440 } else if (!strncmp(attribute.c_str(), "vdo", strlen("vdo"))) { in readDisplayPortAttribute()
447 if (ReadFileToString(attrPath.c_str(), value)) { in readDisplayPortAttribute()
452 ALOGE("usbdp: Failed to read Type-C attribute %s", attribute.c_str()); in readDisplayPortAttribute()
478 ALOGE("usbdp: Failed to open or read Type-C attribute %s", attribute.c_str()); in writeDisplayPortAttribute()
484 if (!strncmp(attribute.c_str(), "hpd", strlen("hpd"))) { in writeDisplayPortAttribute()
485 if (!strncmp(attrUsb.c_str(), "0", strlen("0"))) { in writeDisplayPortAttribute()
[all …]
/hardware/google/graphics/common/libhwc2.1/libvrr/
DFileNode.cpp68 int ret = write(fd, cmdString.c_str(), std::strlen(cmdString.c_str())); in WriteUint32()
71 mNodePath.c_str(), nodeName.c_str(), ret, errno); in WriteUint32()
75 ALOGE("Write to invalid file node %s%s", mNodePath.c_str(), nodeName.c_str()); in WriteUint32()
87 int fd = open(fullPath.c_str(), O_WRONLY, 0); in getFileHandler()
89 ALOGE("Open file node %s failed, fd = %d", fullPath.c_str(), fd); in getFileHandler()
/hardware/google/camera/common/apex_update_listener/
Dapex_update_listener.cc61 file_descriptor, std::string(apex_info_list_file_name).c_str(), in Make()
65 std::string(apex_info_list_file_name).c_str(), strerror(errno), errno); in Make()
76 std::string(apex_info_list_file_name).c_str(), in Make()
77 std::string(apex_name).c_str()); in Make()
93 auto status = xml_doc.LoadFile(apex_info_list_file_name.c_str()); in TrySlurpInfo()
109 if (apex_info->Attribute("moduleName", apex_name.c_str())) { in TrySlurpInfo()
110 Info info{.module_name = apex_name.c_str()}; in TrySlurpInfo()
142 ALOGE("XML did not contain any apex-info about %s", apex_name.c_str()); in TrySlurpInfo()
159 apex_info_list_file_name_.c_str(), strerror(errno), errno); in ThreadFunction()
168 ALOGI("%s created as %s", apex_info_list_file_name_.c_str(), in ThreadFunction()
[all …]
/hardware/interfaces/audio/policy/1.0/vts/functional/
DValidateEngineConfiguration.cpp46 EXPECT_VALID_XML_MULTIPLE_LOCATIONS(config.c_str(), android::audio_get_configuration_paths(), in TEST()
47 schema.c_str()); in TEST()
57 "", "", "", config.c_str(), android::audio_get_configuration_paths(), in deviceUsesConfigurableEngine()
58 schema.c_str()) && in deviceUsesConfigurableEngine()
60 "", "", "", configurableConfig.c_str(), android::audio_get_configuration_paths(), in deviceUsesConfigurableEngine()
61 configurableSchemas.c_str()); in deviceUsesConfigurableEngine()
94 << "Invalid criterion type for " << criterion.name.c_str(); in TEST()
/hardware/interfaces/automotive/audiocontrol/aidl/default/
DAudioControl.cpp201 LOG(INFO) << "Focus changed: " << toString(in_focusChange).c_str() << " for usage " in onAudioFocusChange()
202 << in_usage.c_str() << " in zone " << in_zoneId; in onAudioFocusChange()
262 LOG(INFO) << "Focus changed: " << toString(in_focusChange).c_str() << " for metadata " in onAudioFocusChangeWithMetaData()
263 << in_playbackMetaData.toString().c_str() << " in zone " << in_zoneId; in onAudioFocusChangeWithMetaData()
269 LOG(INFO) << "Audio Device Gains changed: resons:" << toEnumString(in_reasons).c_str() in setAudioDeviceGainsChanged()
270 << " for devices: " << toString(in_gains).c_str(); in setAudioDeviceGainsChanged()
333 dprintf(fd, "Invalid option: %s\n", option.c_str()); in dump()
420 usage.c_str()); in cmdRequestFocus()
426 dprintf(fd, "Non-integer zoneId provided with request: %s\n", string(args[2]).c_str()); in cmdRequestFocus()
432 dprintf(fd, "Non-integer focusGain provided with request: %s\n", string(args[3]).c_str()); in cmdRequestFocus()
[all …]
/hardware/qcom/sm8150p/gps/core/
DSystemStatus.cpp217 mM1.mGpsWeek = atoi(mField[eGpsWeek].c_str()); in SystemStatusPQWM1parser()
218 mM1.mGpsTowMs = atoi(mField[eGpsTowMs].c_str()); in SystemStatusPQWM1parser()
219 mM1.mTimeValid = atoi(mField[eTimeValid].c_str()); in SystemStatusPQWM1parser()
220 mM1.mTimeSource = atoi(mField[eTimeSource].c_str()); in SystemStatusPQWM1parser()
221 mM1.mTimeUnc = atoi(mField[eTimeUnc].c_str()); in SystemStatusPQWM1parser()
222 mM1.mClockFreqBias = atoi(mField[eClockFreqBias].c_str()); in SystemStatusPQWM1parser()
223 mM1.mClockFreqBiasUnc = atoi(mField[eClockFreqBiasUnc].c_str()); in SystemStatusPQWM1parser()
224 mM1.mXoState = atoi(mField[eXoState].c_str()); in SystemStatusPQWM1parser()
225 mM1.mPgaGain = atoi(mField[ePgaGain].c_str()); in SystemStatusPQWM1parser()
226 mM1.mGpsBpAmpI = atoi(mField[eGpsBpAmpI].c_str()); in SystemStatusPQWM1parser()
[all …]
/hardware/qcom/sm7250/gps/core/
DSystemStatus.cpp217 mM1.mGpsWeek = atoi(mField[eGpsWeek].c_str()); in SystemStatusPQWM1parser()
218 mM1.mGpsTowMs = atoi(mField[eGpsTowMs].c_str()); in SystemStatusPQWM1parser()
219 mM1.mTimeValid = atoi(mField[eTimeValid].c_str()); in SystemStatusPQWM1parser()
220 mM1.mTimeSource = atoi(mField[eTimeSource].c_str()); in SystemStatusPQWM1parser()
221 mM1.mTimeUnc = atoi(mField[eTimeUnc].c_str()); in SystemStatusPQWM1parser()
222 mM1.mClockFreqBias = atoi(mField[eClockFreqBias].c_str()); in SystemStatusPQWM1parser()
223 mM1.mClockFreqBiasUnc = atoi(mField[eClockFreqBiasUnc].c_str()); in SystemStatusPQWM1parser()
224 mM1.mXoState = atoi(mField[eXoState].c_str()); in SystemStatusPQWM1parser()
225 mM1.mPgaGain = atoi(mField[ePgaGain].c_str()); in SystemStatusPQWM1parser()
226 mM1.mGpsBpAmpI = atoi(mField[eGpsBpAmpI].c_str()); in SystemStatusPQWM1parser()
[all …]
/hardware/qcom/sm8150/gps/core/
DSystemStatus.cpp217 mM1.mGpsWeek = atoi(mField[eGpsWeek].c_str()); in SystemStatusPQWM1parser()
218 mM1.mGpsTowMs = atoi(mField[eGpsTowMs].c_str()); in SystemStatusPQWM1parser()
219 mM1.mTimeValid = atoi(mField[eTimeValid].c_str()); in SystemStatusPQWM1parser()
220 mM1.mTimeSource = atoi(mField[eTimeSource].c_str()); in SystemStatusPQWM1parser()
221 mM1.mTimeUnc = atoi(mField[eTimeUnc].c_str()); in SystemStatusPQWM1parser()
222 mM1.mClockFreqBias = atoi(mField[eClockFreqBias].c_str()); in SystemStatusPQWM1parser()
223 mM1.mClockFreqBiasUnc = atoi(mField[eClockFreqBiasUnc].c_str()); in SystemStatusPQWM1parser()
224 mM1.mXoState = atoi(mField[eXoState].c_str()); in SystemStatusPQWM1parser()
225 mM1.mPgaGain = atoi(mField[ePgaGain].c_str()); in SystemStatusPQWM1parser()
226 mM1.mGpsBpAmpI = atoi(mField[eGpsBpAmpI].c_str()); in SystemStatusPQWM1parser()
[all …]
/hardware/qcom/sm7150/gps/core/
DSystemStatus.cpp217 mM1.mGpsWeek = atoi(mField[eGpsWeek].c_str()); in SystemStatusPQWM1parser()
218 mM1.mGpsTowMs = atoi(mField[eGpsTowMs].c_str()); in SystemStatusPQWM1parser()
219 mM1.mTimeValid = atoi(mField[eTimeValid].c_str()); in SystemStatusPQWM1parser()
220 mM1.mTimeSource = atoi(mField[eTimeSource].c_str()); in SystemStatusPQWM1parser()
221 mM1.mTimeUnc = atoi(mField[eTimeUnc].c_str()); in SystemStatusPQWM1parser()
222 mM1.mClockFreqBias = atoi(mField[eClockFreqBias].c_str()); in SystemStatusPQWM1parser()
223 mM1.mClockFreqBiasUnc = atoi(mField[eClockFreqBiasUnc].c_str()); in SystemStatusPQWM1parser()
224 mM1.mXoState = atoi(mField[eXoState].c_str()); in SystemStatusPQWM1parser()
225 mM1.mPgaGain = atoi(mField[ePgaGain].c_str()); in SystemStatusPQWM1parser()
226 mM1.mGpsBpAmpI = atoi(mField[eGpsBpAmpI].c_str()); in SystemStatusPQWM1parser()
[all …]

12345678910>>...47