Home
last modified time | relevance | path

Searched full:written (Results 1 – 25 of 17223) sorted by relevance

12345678910>>...689

/external/curl/docs/
DBINDINGS.md4 Creative people have written bindings or interfaces for various environments
15 [Ada95](https://web.archive.org/web/20070403105909/www.almroth.com/adacurl/index.html) Written by A…
17 [Basic](https://scriptbasic.com/) ScriptBasic bindings written by Peter Verhas
19 C++: [curlpp](https://github.com/jpbarrette/curlpp/) Written by Jean-Philippe Barrette-LaPierre,
23 [Ch](https://chcurl.sourceforge.net/) Written by Stephen Nestinger and Jonathan Rogado
25 Cocoa: [BBHTTP](https://github.com/biasedbit/BBHTTP) written by Bruno de Carvalho
26 [curlhandle](https://github.com/karelia/curlhandle) Written by Dan Wood
30 [D](https://dlang.org/library/std/net/curl.html) Written by Kenneth Bogert
32 [Delphi](https://github.com/Mercury13/curl4delphi) Written by Mikhail Merkuryev
34 [Dylan](https://dylanlibs.sourceforge.net/) Written by Chris Double
[all …]
/external/guava/android/guava-tests/test/com/google/common/io/
DCountingOutputStreamTest.java29 int written = 0; in testCount() local
32 assertEquals(written, out.size()); in testCount()
33 assertEquals(written, counter.getCount()); in testCount()
36 written += 1; in testCount()
37 assertEquals(written, out.size()); in testCount()
38 assertEquals(written, counter.getCount()); in testCount()
42 written += 10; in testCount()
43 assertEquals(written, out.size()); in testCount()
44 assertEquals(written, counter.getCount()); in testCount()
47 written += 5; in testCount()
[all …]
/external/guava/guava-tests/test/com/google/common/io/
DCountingOutputStreamTest.java29 int written = 0; in testCount() local
32 assertEquals(written, out.size()); in testCount()
33 assertEquals(written, counter.getCount()); in testCount()
36 written += 1; in testCount()
37 assertEquals(written, out.size()); in testCount()
38 assertEquals(written, counter.getCount()); in testCount()
42 written += 10; in testCount()
43 assertEquals(written, out.size()); in testCount()
44 assertEquals(written, counter.getCount()); in testCount()
47 written += 5; in testCount()
[all …]
/external/cronet/third_party/icu/source/io/
Dsprintf.cpp64 int32_t written = 0; in u_sprintf_pad_and_justify() local
87 written += paddingLeft; in u_sprintf_pad_and_justify()
91 written += u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
99 written += u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
104 written = u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
107 if (written >= 0 && lengthOfResult > written) { in u_sprintf_pad_and_justify()
111 return written; in u_sprintf_pad_and_justify()
120 int32_t written; in u_sprintf() local
123 written = u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap); in u_sprintf()
126 return written; in u_sprintf()
[all …]
Duprintf.cpp84 int32_t written, i; in u_printf_pad_and_justify() local
90 written = u_file_write(result, resultLen, output); in u_printf_pad_and_justify()
92 written += u_file_write(&info->fPadChar, 1, output); in u_printf_pad_and_justify()
97 written = 0; in u_printf_pad_and_justify()
99 written += u_file_write(&info->fPadChar, 1, output); in u_printf_pad_and_justify()
101 written += u_file_write(result, resultLen, output); in u_printf_pad_and_justify()
106 written = u_file_write(result, resultLen, output); in u_printf_pad_and_justify()
109 return written; in u_printf_pad_and_justify()
209 int32_t written = 0; /* haven't written anything yet */ in u_vfprintf_u() local
212 u_printf_parse(&g_stream_handler, patternSpecification, f, NULL, &f->str.fBundle, &written, ap); in u_vfprintf_u()
[all …]
/external/icu/icu4c/source/io/
Dsprintf.cpp64 int32_t written = 0; in u_sprintf_pad_and_justify() local
87 written += paddingLeft; in u_sprintf_pad_and_justify()
91 written += u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
99 written += u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
104 written = u_sprintf_write(output, result, resultLen); in u_sprintf_pad_and_justify()
107 if (written >= 0 && lengthOfResult > written) { in u_sprintf_pad_and_justify()
111 return written; in u_sprintf_pad_and_justify()
120 int32_t written; in u_sprintf() local
123 written = u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap); in u_sprintf()
126 return written; in u_sprintf()
[all …]
Duprintf.cpp84 int32_t written, i; in u_printf_pad_and_justify() local
90 written = u_file_write(result, resultLen, output); in u_printf_pad_and_justify()
92 written += u_file_write(&info->fPadChar, 1, output); in u_printf_pad_and_justify()
97 written = 0; in u_printf_pad_and_justify()
99 written += u_file_write(&info->fPadChar, 1, output); in u_printf_pad_and_justify()
101 written += u_file_write(result, resultLen, output); in u_printf_pad_and_justify()
106 written = u_file_write(result, resultLen, output); in u_printf_pad_and_justify()
109 return written; in u_printf_pad_and_justify()
209 int32_t written = 0; /* haven't written anything yet */ in u_vfprintf_u() local
212 u_printf_parse(&g_stream_handler, patternSpecification, f, NULL, &f->str.fBundle, &written, ap); in u_vfprintf_u()
[all …]
/external/deqp/modules/gles31/functional/
Des31fInfoLogQueryShared.cpp63 int written = -1; in verifyInfoLogQuery() local
66 (gl.*getInfoLog)(object, logLen+2, &written, &buf[0]); in verifyInfoLogQuery()
69 if (written == -1) in verifyInfoLogQuery()
70 result.fail("'length' was not written to"); in verifyInfoLogQuery()
71 else if (buf[written] != '\0') in verifyInfoLogQuery()
73 else if (logLen != 0 && (written + 1) > logLen) in verifyInfoLogQuery()
75 else if ((written + 1) < logLen) in verifyInfoLogQuery()
79 else if (written != (int)strlen(&buf[0])) in verifyInfoLogQuery()
80 result.fail("'length' and written string length do not match"); in verifyInfoLogQuery()
87 int written = -1; in verifyInfoLogQuery() local
[all …]
/external/python/pyfakefs/pyfakefs/tests/
Dfake_stat_time_test.py72 written = self.stat_time(self.file_path)
75 return created, written, closed
96 written = self.stat_time(self.file_path)
99 return before, opened, written, closed
122 written = self.stat_time(self.file_path)
127 return before, opened, written, flushed, closed
183 created, written, closed = self.open_write_close_new_file()
185 self.assertEqual(created.st_ctime, written.st_ctime)
186 self.assertLessExceptWindows(written.st_ctime, closed.st_ctime)
188 self.assertEqual(created.st_atime, written.st_atime)
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/
DArchiveOutputStream.java53 /** holds the number of bytes written to this stream */
76 * Additional data can be written, if the format supports it.
103 * @param b The byte to be written.
113 * Increments the counter of already written bytes.
114 * Doesn't increment if EOF has been hit ({@code written == -1}).
116 * @param written the number of bytes written
118 protected void count(final int written) { in count() argument
119 count((long) written); in count()
123 * Increments the counter of already written bytes.
124 * Doesn't increment if EOF has been hit ({@code written == -1}).
[all …]
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_io.py35 self.written.append(args)
44 self.written = []
78 self.assertEqual(shell.written, [('test', 'stdout')])
81 self.assertEqual(shell.written, [('t\xe8st', 'stdout')])
84 self.assertEqual(shell.written, [(u't\xe8st', 'stdout')])
88 self.assertEqual(shell.written, [('t\xe8st', 'stdout')])
89 self.assertEqual(type(shell.written[0][0]), str)
92 self.assertEqual(shell.written, [('t\xe8st', 'stdout')])
93 self.assertEqual(type(shell.written[0][0]), str)
96 self.assertEqual(shell.written, [(u't\xe8st', 'stdout')])
[all …]
/external/sfntly/cpp/src/sfntly/data/
Dwritable_font_data.h50 // @return the number of bytes written
55 // @param b the source for the bytes to be written
57 // @param length the length of the bytes to be written
58 // @return the number of bytes actually written; -1 if the index is outside
67 // @param b the source for the bytes to be written
68 // @return the number of bytes actually written; -1 if the index is outside
77 // @param b the source for the bytes to be written
79 // @param length the length of the bytes to be written
81 // @return the number of bytes actually written
88 // Writes padding to the FontData. The padding byte written is 0x00.
[all …]
/external/apache-commons-io/src/main/java/org/apache/commons/io/output/
DThresholdingOutputStream.java26 …which triggers an event when a specified number of bytes of data have been written to it. The event
61 * The number of bytes written to the output stream.
63 private long written; field in ThresholdingOutputStream
98 * @param count The number of bytes about to be written to the underlying output stream.
103 if (!thresholdExceeded && written + count > threshold) { in checkThreshold()
125 * Flushes this output stream and forces any buffered output bytes to be written out.
136 * Returns the number of bytes that have been written to this output stream.
138 * @return The number of bytes written.
141 return written; in getByteCount()
171 return written > threshold; in isThresholdExceeded()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/
Dwrite.hpp37 * @li All of the data in the supplied buffers has been written. That is, the
45 * @param s The stream to which the data is to be written. The type must support
48 * @param buffers One or more buffers containing the data to be written. The sum
76 * @li All of the data in the supplied buffers has been written. That is, the
84 * @param s The stream to which the data is to be written. The type must support
87 * @param buffers One or more buffers containing the data to be written. The sum
116 * @li All of the data in the supplied buffers has been written. That is, the
124 * @param s The stream to which the data is to be written. The type must support
127 * @param buffers One or more buffers containing the data to be written. The sum
142 * non-zero return value indicates the maximum number of bytes to be written on
[all …]
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DMessageFramer.java123 * @param message contains the message to be written out. It will be completely consumed.
133 int written = -1; in writePayload() local
138 written = writeCompressed(message, messageLength); in writePayload()
140 written = writeUncompressed(message, messageLength); in writePayload()
155 if (messageLength != -1 && written != messageLength) { in writePayload()
156 String err = String.format("Message length inaccurate %s != %s", written, messageLength); in writePayload()
159 statsTraceCtx.outboundUncompressedSize(written); in writePayload()
161 statsTraceCtx.outboundMessageSent(currentMessageSeqNo, currentMessageWireSize, written); in writePayload()
170 int written = writeToOutputStream(message, bufferChain); in writeUncompressed() local
171 if (maxOutboundMessageSize >= 0 && written > maxOutboundMessageSize) { in writeUncompressed()
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
DCountingOutputStream.java53 * Increments the counter of already written bytes.
54 * Doesn't increment if the EOF has been hit (written == -1)
56 * @param written the number of bytes written
58 protected void count(final long written) { in count() argument
59 if (written != -1) { in count()
60 bytesWritten += written; in count()
65 * Returns the current number of bytes written to this stream.
66 * @return the number of written bytes
/external/cronet/net/third_party/quiche/src/quiche/spdy/core/
Dhttp2_header_storage_test.cc12 size_t written = Join(buf, empty, separator); in TEST() local
13 EXPECT_EQ(0u, written); in TEST()
20 size_t written = Join(buf, v, separator); in TEST() local
21 EXPECT_EQ(3u, written); in TEST()
22 EXPECT_EQ("one", absl::string_view(buf, written)); in TEST()
29 size_t written = Join(buf, v, separator); in TEST() local
30 EXPECT_EQ(15u, written); in TEST()
31 EXPECT_EQ("one, two, three", absl::string_view(buf, written)); in TEST()
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_run.py102 self.written.append(args)
108 self.written = []
245 self.assertEqual(shell.written, [('test', 'stdout')])
248 self.assertEqual(shell.written, [('t\xe8\u015b\U0001d599', 'stdout')])
252 self.assertEqual(shell.written, [('t\xe8\u015b\U0001d599', 'stdout')])
253 self.assertEqual(type(shell.written[0][0]), str)
257 self.assertEqual(shell.written, [])
260 self.assertEqual(shell.written, [])
262 self.assertEqual(shell.written, [])
268 self.assertEqual(shell.written, [('t\xe8\\u015b\\U0001d599\\xa4', 'stderr')])
[all …]
/external/libbrillo/brillo/streams/
Dmemory_containers_test.cc139 size_t written = 0; in TEST_F() local
141 EXPECT_TRUE(container_.Write(test_write_buffer_, 50, 10, &written, &error)); in TEST_F()
142 EXPECT_EQ(50, written); in TEST_F()
156 size_t written = 0; in TEST_F() local
157 EXPECT_TRUE(container_.Write(test_write_buffer_, 50, 80, &written, nullptr)); in TEST_F()
158 EXPECT_EQ(50, written); in TEST_F()
171 size_t written = 0; in TEST_F() local
172 EXPECT_TRUE(container_.Write(test_write_buffer_, 50, 110, &written, nullptr)); in TEST_F()
173 EXPECT_EQ(50, written); in TEST_F()
187 size_t written = 0; in TEST_F() local
[all …]
/external/perfetto/src/base/
Dcrash_keys.cc53 // Returns the number of chars written, without counting the \0.
81 size_t written = 0; in SerializeCrashKeys() local
85 for (uint32_t i = 0; i < num_keys && written < len; i++) { in SerializeCrashKeys()
89 written += key->ToString(dst + written, len - written); in SerializeCrashKeys()
91 PERFETTO_DCHECK(written <= len); in SerializeCrashKeys()
92 PERFETTO_DCHECK(len == 0 || dst[written] == '\0'); in SerializeCrashKeys()
93 return written; in SerializeCrashKeys()
/external/libpcap/missing/
Dasprintf.c27 * the output is written into an array (specified by argument s) in pcap_vasprintf()
28 * rather than to a stream. If n is zero, nothing is written, in pcap_vasprintf()
30 * beyond the n-1st are discarded rather than being written in pcap_vasprintf()
31 * to the array, and a null character is written at the end in pcap_vasprintf()
32 * of the characters actually written into the array. in pcap_vasprintf()
37 * would have been written had n been sufficiently large, not in pcap_vasprintf()
40 * output has been completely written if and only if the returned in pcap_vasprintf()
45 * of characters that would have been written had a buffer been in pcap_vasprintf()
85 * return value should be the number of characters written. in pcap_vasprintf()
/external/flatbuffers/swift/Sources/FlatBuffers/
DFlatBufferBuilder.swift36 …/// Storage for the Vtables used in the buffer are stored in here, so they would be written later …
38 /// Flatbuffer data will be written into
41 /// Reference Vtables that were already written to the buffer
43 /// A check if the buffer is being written into by a different table
45 /// Dictonary that stores a map of all the strings that were written to the buffer
84 /// Returns the written bytes into the ``ByteBuffer``
95 /// with the offsets, and data written to it.
100 /// returns a new buffer that is sized to the data written
132 /// Clears the builder and the buffer from the written data.
180 /// File id would append a file id name at the end of the written bytes before,
[all …]
/external/openthread/third_party/mbedtls/repo/include/mbedtls/
Dasn1write.h55 * \return The number of bytes written to \p p on success.
69 * \return The number of bytes written to \p p on success.
85 * \return The number of bytes written to \p p on success.
103 * \return The number of bytes written to \p p on success.
119 * \return The number of bytes written to \p p on success.
135 * \return The number of bytes written to \p p on success.
150 * \param par_len The length of the parameters, which must be already written.
153 * \return The number of bytes written to \p p on success.
171 * \return The number of bytes written to \p p on success.
188 * \return The number of bytes written to \p p on success.
[all …]
/external/mbedtls/include/mbedtls/
Dasn1write.h51 * \return The number of bytes written to \p p on success.
65 * \return The number of bytes written to \p p on success.
81 * \return The number of bytes written to \p p on success.
99 * \return The number of bytes written to \p p on success.
115 * \return The number of bytes written to \p p on success.
131 * \return The number of bytes written to \p p on success.
146 * \param par_len The length of the parameters, which must be already written.
149 * \return The number of bytes written to \p p on success.
167 * \return The number of bytes written to \p p on success.
184 * \return The number of bytes written to \p p on success.
[all …]
/external/compiler-rt/test/asan/TestCases/
Dcoverage-levels.cc26 // CHECK1: CovDump: bitset of 1 bits written for '{{.*}}', 1 bits are set
27 // CHECK1: 1 PCs written
28 // CHECK2: CovDump: bitset of 2 bits written for '{{.*}}', 1 bits are set
29 // CHECK2: 1 PCs written
30 // CHECK3: CovDump: bitset of 3 bits written for '{{.*}}', 2 bits are set
31 // CHECK3: 2 PCs written
33 // CHECK3_NOPCS-NOT: PCs written
34 // CHECK_COUNTERS: CovDump: 3 counters written for

12345678910>>...689