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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
write.S 5 ENTRY(write) function
16 END(write)
  /bionic/libc/arch-arm64/syscalls/
write.S 5 ENTRY(write) function
14 END(write)
  /bionic/libc/arch-mips/syscalls/
write.S 5 ENTRY(write) function
19 END(write)
  /bionic/libc/arch-mips64/syscalls/
write.S 5 ENTRY(write) function
25 END(write)
  /bionic/libc/arch-x86/syscalls/
write.S 5 ENTRY(write) function
39 END(write)
  /bionic/libc/arch-x86_64/syscalls/
write.S 5 ENTRY(write) function
15 END(write)
  /device/google/marlin/
init.power.sh 6 function write() { function
18 write $cpubw/governor "bw_hwmon"
19 write $cpubw/polling_interval 50
20 write $cpubw/min_freq 1525
21 write $cpubw/bw_hwmon/mbps_zones "1525 5195 11863 13763"
22 write $cpubw/bw_hwmon/sample_ms 4
23 write $cpubw/bw_hwmon/io_percent 34
24 write $cpubw/bw_hwmon/hist_memory 20
25 write $cpubw/bw_hwmon/hyst_length 10
26 write $cpubw/bw_hwmon/low_power_ceil_mbps
    [all...]
  /device/google/wahoo/
init.power.sh 6 function write() { function
19 write $cpubw/governor "bw_hwmon"
20 write $cpubw/polling_interval 50
21 write $cpubw/bw_hwmon/mbps_zones "3143 5859 11863 13763"
22 write $cpubw/bw_hwmon/sample_ms 4
23 write $cpubw/bw_hwmon/io_percent 34
24 write $cpubw/bw_hwmon/hist_memory 20
25 write $cpubw/bw_hwmon/hyst_length 10
26 write $cpubw/bw_hwmon/low_power_ceil_mbps 0
27 write $cpubw/bw_hwmon/low_power_io_percent 3
    [all...]
  /external/google-breakpad/src/client/linux/log/
log.cc 40 int write(const char* buf, size_t nbytes) { function in namespace:logger
  /external/catch2/scripts/
generateSingleHeader.py 51 def write( line ): function in function:generate
53 out.write( line )
69 write( u"// start {0}\n".format( filename ) )
103 write( line.rstrip() + "\n" )
104 write( u'// end {}\n'.format(filename) )
107 write( u"/*\n" )
108 write( u" * Catch v{0}\n".format( v.getVersionString() ) )
109 write( u" * Generated: {0}\n".format( datetime.datetime.now() ) )
110 write( u" * ----------------------------------------------------------\n" )
111 write( u" * This file has been merged from multiple headers. Please don't edit it directly\n"
    [all...]
  /external/python/cpython2/Lib/plat-irix5/
cdplayer.py 14 # You can then use c.write() to write out the changed values to the
69 def write(self): member in class:Cdplayer
84 new.write(line)
85 new.write(self.id + '.title:\t' + self.title + '\n')
86 new.write(self.id + '.artist:\t' + self.artist + '\n')
88 new.write('%s.track.%r:\t%s\n' % (self.id, i, self.track[i]))
  /external/python/cpython2/Lib/plat-irix6/
cdplayer.py 14 # You can then use c.write() to write out the changed values to the
69 def write(self): member in class:Cdplayer
84 new.write(line)
85 new.write(self.id + '.title:\t' + self.title + '\n')
86 new.write(self.id + '.artist:\t' + self.artist + '\n')
88 new.write('%s.track.%r:\t%s\n' % (self.id, i, self.track[i]))
  /external/tensorflow/tensorflow/python/data/experimental/ops/
writers.py 42 def write(self, dataset): member in class:TFRecordWriter
43 """Returns a `tf.Operation` to write a dataset to a file.
  /external/u-boot/include/spmi/
spmi.h 11 * @write: write register 'reg' of slave 'usid' and peripheral 'pid'
13 * Each register is 8-bit, both read and write can return negative values
18 int (*write)(struct udevice *dev, int usid, int pid, int reg, member in struct:dm_spmi_ops
34 * spmi_reg_write() - write a register of specific slave/peripheral
36 * @dev: SPMI bus to write
39 * @reg: Register to write
40 * @value: Value to write
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
CountingOutputStream.java 47 public void write(int b) throws IOException { method in class:CountingOutputStream
49 out.write(b);
53 public void write(byte[] b) throws IOException { method in class:CountingOutputStream
55 out.write(b);
59 public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStream
61 out.write(b, off, len);
  /external/smali/util/src/main/java/org/jf/util/
RandomAccessFileOutputStream.java 48 @Override public void write(int b) throws IOException { method in class:RandomAccessFileOutputStream
51 raf.write(b);
54 @Override public void write(byte[] b) throws IOException { method in class:RandomAccessFileOutputStream
57 raf.write(b);
60 @Override public void write(byte[] b, int off, int len) throws IOException { method in class:RandomAccessFileOutputStream
63 raf.write(b, off, len);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
NullOutputStream.java 12 public void write(byte[] buf) method in class:NullOutputStream
18 public void write(byte[] buf, int off, int len) method in class:NullOutputStream
24 public void write(int b) throws IOException method in class:NullOutputStream
  /external/grpc-grpc-java/services/src/main/java/io/grpc/services/
BinaryLogSink.java 31 void write(MessageLite message); method in interface:BinaryLogSink
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
ValueWriter.java 12 void write(XmlSerializer writer) throws IOException; method in interface:ValueWriter
  /external/parameter-framework/upstream/test/functional-tests-legacy/
ACTCampaignEngine.py 54 def write(self, message): member in class:Logger
55 self.terminal.write(message)
56 self.log.write(message)
80 fout.write('true')
84 fout.write('false')
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
InterfaceWriter.java 40 public Appendable write(Appendable appendable, Context context) throws IOException { method in class:InterfaceWriter
58 implementedTypesIterator.next().write(appendable, context);
61 implementedTypesIterator.next().write(appendable, context);
67 methodWriter.write(new IndentingAppendable(appendable), context);
71 nestedTypeWriter.write(new IndentingAppendable(appendable), context);
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
AnnotationOffItem.java 30 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationOffItem
AnnotationSetRefItem.java 30 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetRefItem
EncodedArrayItem.java 31 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedArrayItem
33 value.write(file);
StringIdItem.java 31 public void write(DexRandomAccessFile file) throws IOException { method in class:StringIdItem

Completed in 2078 milliseconds

1 2 3 4 5 6 7 8 91011>>