OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:freqstr
(Results
1 - 2
of
2
) sorted by null
/external/google-benchmark/src/
sysinfo.cc
164
const char*
freqstr
= strchr(line, ':');
local
165
if (
freqstr
) {
166
cpuinfo_cycles_per_second = strtod(
freqstr
+ 1, &err) * 1000000.0;
167
if (
freqstr
[1] != '\0' && *err == '\0' && cpuinfo_cycles_per_second > 0)
171
const char*
freqstr
= strchr(line, ':');
local
172
if (
freqstr
) {
173
bogo_clock = strtod(
freqstr
+ 1, &err) * 1000000.0;
174
if (
freqstr
[1] != '\0' && *err == '\0' && bogo_clock > 0)
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiAssociationTest.java
66
String
freqStr
= arguments.getString("frequency-band");
67
if (
freqStr
!= null) {
68
setFrequencyBand(
freqStr
);
Completed in 552 milliseconds