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

1 2

  /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)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 52 assertFalse(Attribute.LANGUAGE.equals(Attribute.READING));
120 * java.text.AttributedCharacterIterator$Attribute#READING
128 Attribute reading = Attribute.READING; local
  /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 --
AsynchronousSocketChannelImpl.java 67 // reading state
69 private boolean reading; field in class:AsynchronousSocketChannelImpl
71 private boolean readKilled; // further reading disallowed due to timeout
149 reading = false;
185 // established so prevent reading or writing.
249 throw new IllegalStateException("Reading not allowed due to timeout or cancellation");
250 if (reading)
256 reading = true;
  /device/linaro/hikey/wpan/uim/
uim.c 65 UIM_VER(" reading %d bytes", (int)read(dev_fd, resp_buffer, 15));
92 int reading = 1; local
104 while (reading) {
  /external/ltp/testcases/kernel/device-drivers/tbio/tbio_kernel/
ltp_tbio.c 123 int reading = 0, writing = 0; local
146 reading = 1;
151 inter.data_len, reading, GFP_KERNEL);
290 int reading = 0, writing = 0; local
320 reading = 1;
325 inter.data_len, reading, GFP_KERNEL);
  /system/chre/apps/sensor_world/
sensor_world.cc 367 const auto reading = ev->readings[0]; local
372 reading.isNear, reading.invalid);
379 if (reading.isNear == 0 && !kBreakIt) {
390 if (sensors[statusIndex].isInitialized && reading.isNear == 0) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.c 62 "separation between reading and writing to streams; implementations are\n"
65 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
191 "is opened. It defaults to 'r' which means open for reading in text\n"
196 "encoding used is platform dependent. (For reading and writing raw\n"
203 "'r' open for reading (default)\n"
208 "'+' open a disk file for updating (reading and writing)\n"
213 "The default mode is 'rt' (open for reading text). For binary random\n"
276 "through which the standard file operations such as reading and writing\n"
285 "reading and writing. For strings StringIO can be used like a file\n"
302 int reading = 0, writing = 0, appending = 0, updating = 0;
299 int reading = 0, writing = 0, appending = 0, updating = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.c 62 "seperation between reading and writing to streams; implementations are\n"
65 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
191 "is opened. It defaults to 'r' which means open for reading in text\n"
196 "encoding used is platform dependent. (For reading and writing raw\n"
203 "'r' open for reading (default)\n"
208 "'+' open a disk file for updating (reading and writing)\n"
213 "The default mode is 'rt' (open for reading text). For binary random\n"
276 "through which the standard file operations such as reading and writing\n"
285 "reading and writing. For strings StringIO can be used like a file\n"
302 int reading = 0, writing = 0, appending = 0, updating = 0;
299 int reading = 0, writing = 0, appending = 0, updating = 0; local
    [all...]
  /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/python/cpython2/Modules/_io/
_iomodule.c 62 "separation between reading and writing to streams; implementations are\n"
65 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
191 "is opened. It defaults to 'r' which means open for reading in text\n"
196 "encoding used is platform dependent. (For reading and writing raw\n"
203 "'r' open for reading (default)\n"
208 "'+' open a disk file for updating (reading and writing)\n"
213 "The default mode is 'rt' (open for reading text). For binary random\n"
276 "through which the standard file operations such as reading and writing\n"
285 "reading and writing. For strings StringIO can be used like a file\n"
302 int reading = 0, writing = 0, appending = 0, updating = 0
299 int reading = 0, writing = 0, appending = 0, updating = 0; local
    [all...]
  /external/python/cpython3/Modules/_io/
_iomodule.c 64 "separation between reading and writing to streams; implementations are\n"
67 "Extending IOBase is RawIOBase which deals simply with the reading and\n"
121 is opened. It defaults to 'r' which means open for reading in text
128 current locale encoding. (For reading and writing raw bytes use binary
134 'r' open for reading (default)
140 '+' open a disk file for updating (reading and writing)
144 The default mode is 'rt' (open for reading text). For binary random
218 through which the standard file operations such as reading and writing
227 reading and writing. For strings StringIO can be used like a file
240 int creating = 0, reading = 0, writing = 0, appending = 0, updating = 0
239 int creating = 0, reading = 0, writing = 0, appending = 0, updating = 0; local
    [all...]
  /external/python/cpython2/Lib/idlelib/
PyShell.py 933 reading = False variable in class:PyShell
    [all...]
  /external/python/cpython3/Lib/idlelib/
pyshell.py 911 reading = False variable in class:PyShell
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
PyShell.py 907 reading = False variable in class:PyShell
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
PyShell.py 907 reading = False variable in class:PyShell
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 907 reading = False variable in class:PyShell
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 907 reading = False variable in class:PyShell
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.0.CR3/
netty-handler-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/jna/3.4.0/
jna-3.4.0.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.3.Final/
netty-handler-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.6.Final/
netty-handler-4.1.6.Final.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/m2/repository/com/koushikdutta/async/androidasync/2.1.3/
androidasync-2.1.3.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 

Completed in 762 milliseconds

1 2