HomeSort by relevance Sort by last modified time
    Searched refs:reading (Results 1 - 25 of 667) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/devlib/src/readenergy/
readenergy.c 95 // A single reading from the energy meter. The values are the proper readings converted
97 struct reading struct
264 void emeter_read_measurements(struct emeter *this, struct reading *reading)
267 reading->sys_adc_ch0_pm1_sys = (double)(CMASK & buffer[BASE_INDEX+0]) / SYS_ADC_CH0_PM1_SYS_SCALE;
268 reading->sys_adc_ch1_pm2_a57 = (double)(CMASK & buffer[BASE_INDEX+1]) / SYS_ADC_CH1_PM2_A57_SCALE;
269 reading->sys_adc_ch2_pm3_a53 = (double)(CMASK & buffer[BASE_INDEX+2]) / SYS_ADC_CH2_PM3_A53_SCALE;
270 reading->sys_adc_ch3_pm4_gpu = (double)(CMASK & buffer[BASE_INDEX+3]) / SYS_ADC_CH3_PM4_GPU_SCALE;
271 reading->sys_adc_ch4_vsys = (double)(VMASK & buffer[BASE_INDEX+4]) / SYS_ADC_CH4_VSYS_SCALE;
272 reading->sys_adc_ch5_va57 = (double)(VMASK & buffer[BASE_INDEX+5]) / SYS_ADC_CH5_VA57_SCALE
287 static struct reading reading; local
    [all...]
  /external/valgrind/gdbserver_tests/
mchelp.stderrB.exp 5 error reading packet
mcinvokeRU.stderrB.exp 14 error reading packet
mcinvokeWS.stderrB.exp 14 error reading packet
  /libcore/ojluni/src/main/native/
nio_util.h 47 jint convertReturnVal(JNIEnv *env, jint n, jboolean reading);
48 jlong convertLongReturnVal(JNIEnv *env, jlong n, jboolean reading);
IOUtil.c 156 convertReturnVal(JNIEnv *env, jint n, jboolean reading)
161 if (reading) {
172 const char *msg = reading ? "Read failed" : "Write failed";
181 convertLongReturnVal(JNIEnv *env, jlong n, jboolean reading)
186 if (reading) {
197 const char *msg = reading ? "Read failed" : "Write failed";
  /external/libmojo/third_party/catapult/devil/devil/android/
device_list.py 34 'Error reading device file %s. Falling back to old format.', file_name)
  /external/autotest/client/site_tests/hardware_LightSensor/
hardware_LightSensor.py 51 logging.info("Did not find light sensor reading at " + path)
57 raise error.TestFail("No light sensor reading found.")
62 reading = int(val)
63 if reading < 0:
64 raise error.TestFail("Invalid light sensor reading (%s)" % val)
65 logging.debug("light sensor reading is %d", reading)
  /external/proguard/src/proguard/optimize/info/
ReadWriteFieldMarker.java 44 private boolean reading = true; field in class:ReadWriteFieldMarker
63 reading = true;
71 reading = true;
79 reading = false;
114 if (reading)
  /compatibility/cdd/8_performance-and-power/
8_2_file-io-access-performance.md 14 * **Sequential read performance**. Measured by reading a 256MB file using
16 * **Random read performance**. Measured by reading a 256MB file using 4KB
  /external/curl/docs/cmdline-opts/
random-file.d 3 Help: File for reading random data from
  /packages/services/Telephony/src/com/android/phone/
TimeConsumingPreferenceActivity.java 17 public void onStarted(Preference preference, boolean reading);
18 public void onFinished(Preference preference, boolean reading);
156 public void onStarted(Preference preference, boolean reading) {
158 Log.i(LOG_TAG, "onStarted, preference=" + preference.getKey() + ", reading=" + reading);
162 if (reading) {
172 public void onFinished(Preference preference, boolean reading) {
174 Log.i(LOG_TAG, "onFinished, preference=" + preference.getKey() + ", reading=" + reading);
178 if (reading) {
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug365.go 7 // check that compiler doesn't stop reading struct def
  /prebuilts/go/linux-x86/test/fixedbugs/
bug365.go 7 // check that compiler doesn't stop reading struct def
  /prebuilts/go/darwin-x86/src/encoding/json/
scanner.go 71 Offset int64 // error occurred after reading Offset bytes
200 // stateBeginValueOrEmpty is the state after reading `[`.
251 // stateBeginStringOrEmpty is the state after reading `{`.
264 // stateBeginString is the state after reading `{"key": value,`.
277 // such as after reading `{}` or `true` or `["x"`.
325 // such as after reading `{}` or `[1,2,3]`.
335 // stateInString is the state after reading `"`.
351 // stateInStringEsc is the state after reading `"\` during a quoted string.
364 // stateInStringEscU is the state after reading `"\u` during a quoted string.
374 // stateInStringEscU1 is the state after reading `"\u1` during a quoted string
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
scanner.go 71 Offset int64 // error occurred after reading Offset bytes
200 // stateBeginValueOrEmpty is the state after reading `[`.
251 // stateBeginStringOrEmpty is the state after reading `{`.
264 // stateBeginString is the state after reading `{"key": value,`.
277 // such as after reading `{}` or `true` or `["x"`.
325 // such as after reading `{}` or `[1,2,3]`.
335 // stateInString is the state after reading `"`.
351 // stateInStringEsc is the state after reading `"\` during a quoted string.
364 // stateInStringEscU is the state after reading `"\u` during a quoted string.
374 // stateInStringEscU1 is the state after reading `"\u1` during a quoted string
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
AsynchronousFileChannelImpl.java 50 // indicates if open for reading/writing
51 protected final boolean reading; field in class:AsynchronousFileChannelImpl
58 boolean reading,
63 this.reading = reading;
209 // -- reading and writing --
SimpleAsynchronousFileChannelImpl.java 58 boolean reading,
62 super(fdObj, reading, writing, executor);
66 boolean reading,
73 return new SimpleAsynchronousFileChannelImpl(fdo, reading, writing, executor);
179 if (shared && !reading)
246 if (shared && !reading)
295 if (!reading)
  /prebuilts/go/darwin-x86/src/cmd/go/
note_test.go 16 // cmd/internal/buildid already has tests that the basic reading works.
26 t.Fatalf("reading build ID from hello binary: %v", err)
44 t.Fatalf("reading build ID from hello binary (linkmode=external): %v", err)
53 // we've had trouble reading the notes generated by gold.
66 t.Fatalf("reading build ID from hello binary (linkmode=external -extldflags=-fuse-ld=gold): %v", err)
  /prebuilts/go/darwin-x86/src/strings/
reader.go 14 // io.ByteScanner, and io.RuneScanner interfaces by reading
18 i int64 // current reading index
32 // Size is the number of bytes available for reading via ReadAt.
145 // Reset resets the Reader to be reading from s.
148 // NewReader returns a new Reader reading from s.
  /prebuilts/go/linux-x86/src/cmd/go/
note_test.go 16 // cmd/internal/buildid already has tests that the basic reading works.
26 t.Fatalf("reading build ID from hello binary: %v", err)
44 t.Fatalf("reading build ID from hello binary (linkmode=external): %v", err)
53 // we've had trouble reading the notes generated by gold.
66 t.Fatalf("reading build ID from hello binary (linkmode=external -extldflags=-fuse-ld=gold): %v", err)
  /prebuilts/go/linux-x86/src/strings/
reader.go 14 // io.ByteScanner, and io.RuneScanner interfaces by reading
18 i int64 // current reading index
32 // Size is the number of bytes available for reading via ReadAt.
145 // Reset resets the Reader to be reading from s.
148 // NewReader returns a new Reader reading from s.
  /development/tools/axl/
chewie.py 52 # thread, queued, opened, send, sent, reading, read, uri, server, y
158 thread, queued, opened, send, sent, reading, read, uri, server, y = val
165 arrow = pylab.Arrow(reading, y, read - reading, 0)
  /external/cmockery/cmockery_0_1_2/
compile 46 right script to run: please start by reading the file `INSTALL'.
  /external/libnetfilter_conntrack/
compile 46 right script to run: please start by reading the file `INSTALL'.

Completed in 1619 milliseconds

1 2 3 4 5 6 7 8 91011>>