HomeSort by relevance Sort by last modified time
    Searched refs:write (Results 276 - 300 of 12827) sorted by null

<<11121314151617181920>>

  /frameworks/opt/net/wifi/service/
wifi-events.rc 24 write /sys/kernel/debug/tracing/instances/wifi/tracing_on 0
25 write /sys/kernel/debug/tracing/instances/wifi/buffer_size_kb 1
26 write /sys/kernel/debug/tracing/instances/wifi/trace_options disable_on_free
32 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/cfg80211_gtk_rekey_notify/enable 1
33 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_add_key/enable 1
34 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_assoc/enable 1
35 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_auth/enable 1
36 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_connect/enable 1
37 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_set_default_key/enable 1
38 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_set_default_mgmt_key/enable
    [all...]
  /frameworks/base/core/java/com/android/internal/usb/
DumpUtils.java 54 dump.write("manufacturer", UsbAccessoryProto.MANUFACTURER, accessory.getManufacturer());
55 dump.write("model", UsbAccessoryProto.MODEL, accessory.getModel());
58 dump.write("version", UsbAccessoryProto.VERSION, accessory.getVersion());
60 dump.write("serial", UsbAccessoryProto.SERIAL, accessory.getSerial());
69 dump.write("name", UsbDeviceProto.NAME, device.getDeviceName());
70 dump.write("vendor_id", UsbDeviceProto.VENDOR_ID, device.getVendorId());
71 dump.write("product_id", UsbDeviceProto.PRODUCT_ID, device.getProductId());
72 dump.write("class", UsbDeviceProto.CLASS, device.getDeviceClass());
73 dump.write("subclass", UsbDeviceProto.SUBCLASS, device.getDeviceSubclass());
74 dump.write("protocol", UsbDeviceProto.PROTOCOL, device.getDeviceProtocol())
    [all...]
  /development/vndk/tools/header-checker/tests/
gen_expected_output.py 7 sys.stdout.write(run_header_abi_dumper(sys.argv[1], True, sys.argv[2:]))
  /external/autotest/server/site_tests/telemetry_GpuTests/
generate_controlfiles.py 62 f.write(content)
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSProcessable.java 17 public void write(OutputStream out) method in interface:CMSProcessable
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERSequence.java 62 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED);
63 out.write(0x80);
71 out.write(0x00);
72 out.write(0x00);
BERSet.java 66 out.write(BERTags.SET | BERTags.CONSTRUCTED);
67 out.write(0x80);
75 out.write(0x00);
76 out.write(0x00);
  /external/google-breakpad/src/client/linux/log/
log.cc 40 int write(const char* buf, size_t nbytes) { function in namespace:logger
  /external/guava/guava/src/com/google/common/hash/
HashingOutputStream.java 50 @Override public void write(int b) throws IOException { method in class:HashingOutputStream
52 out.write(b);
55 @Override public void write(byte[] bytes, int off, int len) throws IOException { method in class:HashingOutputStream
57 out.write(bytes, off, len);
  /external/guava/guava/src/com/google/common/io/
CountingOutputStream.java 52 @Override public void write(byte[] b, int off, int len) throws IOException { method in class:CountingOutputStream
53 out.write(b, off, len);
57 @Override public void write(int b) throws IOException { method in class:CountingOutputStream
58 out.write(b);
  /external/libunwind/src/arm/
Gregs.c 29 int write)
55 if (write)
67 if (write)
77 int write)
  /external/libunwind/src/sh/
Gregs.c 30 int write)
57 if (write)
67 if (write)
75 int write)
  /external/llvm/lib/Support/
raw_os_ostream.cpp 27 OS.write(Ptr, Size);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
PackageWriter.java 26 public void write(Movie qualities) throws IOException; method in interface:PackageWriter
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
BitstreamElement.java 28 public abstract void write(OutputStream out) throws IOException; method in class:BitstreamElement
  /external/python/cpython3/Lib/test/subprocessdata/
qgrep.py 10 sys.stdout.write(line)
  /external/swiftshader/third_party/LLVM/lib/Support/
raw_os_ostream.cpp 27 OS.write(Ptr, Size);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
raw_os_ostream.cpp 27 OS.write(Ptr, Size);
  /external/swiftshader/third_party/subzero/wasm-tests/
hello-write.c 8 write(1, str, len);
  /external/valgrind/memcheck/tests/
malloc1_ks_none.stderr.exp 1 Invalid write of size 1
6 Invalid write of size 1
  /frameworks/base/cmds/statsd/benchmark/
filter_value_benchmark.cpp 35 event->write(nodes);
36 event->write(3.2f);
37 event->write("LOCATION");
38 event->write((int64_t)990);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
CellularNetworkTestUtil.java 70 stream.write((byte) ieiType);
72 stream.write((byte) ((plmnsSize + 1) & CellularNetwork.IEI_CONTENT_LENGTH_MASK));
73 stream.write((byte) plmnList.length);
75 stream.write(plmn);
OsuProviderInfoTestUtil.java 68 out.write(payload);
86 out.write(payload);
103 // Write friendly name list.
106 out.write(friendlyNamesData);
108 // Write server URI.
111 // Write method list.
112 out.write((byte) TEST_METHOD_LIST.size());
114 out.write((byte) method.intValue());
117 // Write icon info list.
119 out.write(IconInfoTestUtil.TEST_ICON_INFO_RAW_BYTES)
    [all...]
  /libcore/ojluni/src/main/java/java/io/
BufferedOutputStream.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
30 * an output stream, an application can write bytes to the underlying
53 * Creates a new buffered output stream to write data to the
63 * Creates a new buffered output stream to write data to the
82 out.write(buf, 0, count);
93 public synchronized void write(int b) throws IOException { method in class:BufferedOutputStream
107 * buffer, however, then this method will flush the buffer and write the
113 * @param len the number of bytes to write.
116 public synchronized void write(byte b[], int off, int len) throws IOException { method in class:BufferedOutputStream
119 flush the output buffer and then write the data directly
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
WritableByteChannel.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
33 * A channel that can write bytes.
35 * <p> Only one write operation upon a writable channel may be in progress at
36 * any given time. If one thread initiates a write operation upon a channel
37 * then any other thread that attempts to initiate another write operation will
39 * I/O operations may proceed concurrently with a write operation depends upon
55 * <p> An attempt is made to write up to <i>r</i> bytes to the channel,
68 * <p> Unless otherwise specified, a write operation will return only after
70 * depending upon their state, may write only some of the bytes or possibly
72 * write any more bytes than are free in the socket's output buffer
103 public int write(ByteBuffer src) throws IOException; method in interface:WritableByteChannel
    [all...]

Completed in 785 milliseconds

<<11121314151617181920>>