HomeSort by relevance Sort by last modified time
    Searched refs:written (Results 126 - 150 of 1664) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/iproute2/ip/
ipila.c 56 size_t written = 0; local
65 ret = snprintf(&buff[written], len - written, "%x%s", v, sep);
69 written += ret;
72 return written;
  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 82 int32_t written = local
88 written += WritePadding(written + index, length - written, pad);
89 return written;
  /system/core/fastboot/
usb_windows.cpp 156 unsigned long written = 0; local
166 &written, time_out);
176 count += written;
177 len -= written;
178 data = (const char *)data + written;
  /system/core/libsysutils/src/
SocketClient.cpp 215 size_t written = rc; local
216 while ((current < iovcnt) && (written >= iov[current].iov_len)) {
217 written -= iov[current].iov_len;
223 iov[current].iov_base = (char *)iov[current].iov_base + written;
224 iov[current].iov_len -= written;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
bufferedio.c 7 Written by Amaury Forgeot d'Arc and Antoine Pitrou
128 "Returns the number of bytes written, which is never less than\n"
219 /* Just after the last byte actually written */
221 /* Just after the last byte waiting to be written, or -1 if the buffer
574 /* Returns the address of the `written` member if a BlockingIOError was
588 /* TODO: sanity check (err->written >= 0) */
590 return &err->written;
909 Py_ssize_t n, written = 0; local
957 written += n;
995 written += n;
1420 Py_ssize_t current_size, remaining, written; local
1722 Py_ssize_t written = 0; local
1786 Py_ssize_t written, avail, remaining; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
bufferedio.c 7 Written by Amaury Forgeot d'Arc and Antoine Pitrou
128 "Returns the number of bytes written, which is never less than\n"
219 /* Just after the last byte actually written */
221 /* Just after the last byte waiting to be written, or -1 if the buffer
592 _set_BlockingIOError(char *msg, Py_ssize_t written)
596 errno, msg, written);
602 /* Returns the address of the `written` member if a BlockingIOError was
616 /* TODO: sanity check (err->written >= 0) */
618 return &err->written;
935 Py_ssize_t n, written = 0; local
1439 Py_ssize_t current_size, remaining, written; local
1761 Py_ssize_t written = 0; local
1812 Py_ssize_t written, avail, remaining; local
    [all...]
  /external/python/cpython2/Modules/_io/
bufferedio.c 7 Written by Amaury Forgeot d'Arc and Antoine Pitrou
128 "Returns the number of bytes written, which is always len(b).\n"
218 /* Just after the last byte actually written */
220 /* Just after the last byte waiting to be written, or -1 if the buffer
591 _set_BlockingIOError(char *msg, Py_ssize_t written)
595 errno, msg, written);
601 /* Returns the address of the `written` member if a BlockingIOError was
615 /* TODO: sanity check (err->written >= 0) */
617 return &err->written;
934 Py_ssize_t n, written = 0 local
1436 Py_ssize_t current_size, remaining, written; local
1757 Py_ssize_t written = 0; local
1808 Py_ssize_t written, avail, remaining; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 161 // Sanity check of the amount written.
162 int written = (out.getCursor() - startCursor) / 2; local
163 if (written != codeSize()) {
165 codeSize() + " but actually wrote " + written);
  /external/libmojo/base/trace_event/
trace_event_android.cc 30 ssize_t written = HANDLE_EINTR(write( local
32 if (written <= 0)
34 total_written += written;
205 // debugfs that takes the written data and pushes it onto the trace
  /external/python/cpython3/Lib/test/
test_print.py 106 self.written = ''
110 self.written += str
119 self.assertEqual(f.written, '123\n')
  /external/webrtc/webrtc/base/
proxyserver.cc 140 int written; local
142 written = socket->Send(p, size);
143 buffer->ConsumeReadData(std::max(written, 0));
transformadapter.cc 103 size_t * written, int * error) {
122 // Note: Don't signal SR_EOS this iteration, unless no data written
163 if (written)
164 *written = bytes_written;
stream.h 50 // SE_WRITE: Data can be written, so Write is likely to not return SR_BLOCK
77 // SR_SUCCESS: some number of bytes were successfully written, which is
86 size_t* written, int* error) = 0;
140 // written. GetWriteBuffer does not require a matching call to
141 // ConsumeWriteData if no data is written. Write, ForceWrite, and
152 // was written. Otherwise, the method is unsupported, or an unrecoverable
189 // Communicates the amount of data which will be written to the stream. The
206 // data is written, or something other than SR_SUCCESS is returned. Note that
207 // unlike Write, the argument 'written' is always set, and may be non-zero
211 size_t* written, int* error)
    [all...]
  /system/vold/
secdiscard.cpp 153 auto written = write(fd, buf, wlen); local
154 if (written < 1) {
158 length -= written;
  /external/skia/src/core/
SkRWBuffer.cpp 224 size_t written = fTail->append(src, length); local
225 SkASSERT(written <= length);
226 src = (const char*)src + written;
227 length -= written;
233 written = fTail->append(src, length);
234 SkASSERT(written == length);
  /external/skqp/src/core/
SkRWBuffer.cpp 224 size_t written = fTail->append(src, length); local
225 SkASSERT(written <= length);
226 src = (const char*)src + written;
227 length -= written;
233 written = fTail->append(src, length);
234 SkASSERT(written == length);
  /libcore/ojluni/src/main/java/sun/nio/ch/
IOUtil.java 62 // Do not update src until we see how many bytes were written
85 int written = 0; local
89 written = nd.pwrite(fd,
93 written = nd.write(fd, ((DirectBuffer)bb).address() + pos, rem);
95 if (written > 0)
96 bb.position(pos + written);
97 return written;
  /external/curl/docs/cmdline-opts/
url.d 15 written, use the --output or the --remote-name options.
  /external/curl/docs/examples/
externalsocket.c 57 size_t written = fwrite(ptr, size, nmemb, (FILE *)stream); local
58 return written;
  /external/mesa3d/docs/specs/
MESA_pack_invert.spec 29 This extensions is written against the OpenGL 1.4 Specification.
MESA_shader_debug.spec 35 The extension is written against the OpenGL 1.5 specification.
37 The extension is written against the OpenGL Shading Language 1.10
189 print log" (XXX DEBUG_PRINT_MESA?). Each component is written in
204 a diagnostic message is written to the "debug assert log".
  /external/python/cpython3/Lib/test/eintrdata/
eintr_tester.py 173 written = 0
174 while written < len(data):
175 written += os.write(wr, memoryview(data)[written:])
265 written = 0
266 while written < len(data):
267 sent = send_func(wr, memoryview(data)[written:])
269 written += len(data) if sent is None else sent
  /external/tensorflow/tensorflow/core/kernels/
tensor_array.cc 96 // Skip "soft copy" of indices which have not been written.
97 if (!rhs->tensors_[i].written) continue;
101 // Mark as written. Reads will know that if written is true and
105 tensors_[i].written = true;
  /frameworks/base/services/core/java/com/android/server/net/
IpConfigStore.java 81 boolean written = false;
107 written = true;
112 written = true;
136 written = true;
144 written = true;
149 written = true;
159 if (written) {
172 return written;
  /prebuilts/go/darwin-x86/src/html/template/
url.go 92 written := 0
136 b.WriteString(s[written:i])
138 written = i + 1
140 b.WriteString(s[written:])
141 return written != 0
163 written := 0
166 filterSrcsetElement(s, written, i, &b)
168 written = i + 1
171 filterSrcsetElement(s, written, len(s), &b)

Completed in 796 milliseconds

1 2 3 4 56 7 8 91011>>