HomeSort by relevance Sort by last modified time
    Searched refs:written (Results 51 - 75 of 715) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/
win_if_list.c 50 DWORD written; local
62 &written, NULL)) {
79 DWORD written; local
93 (DWORD) blen, &written, NULL)) {
  /device/google/cuttlefish_common/host/commands/logcat_receiver/
main.cpp 66 auto written = logcat_file->Write(buff, read); local
67 CHECK(written == read)
  /external/curl/docs/cmdline-opts/
libcurl.d 7 libcurl-using C source code written to the file that does the equivalent
stderr.d 6 is a plain '-', it is instead written to stdout.
  /external/curl/lib/
sendf.h 78 ssize_t *written);
84 ssize_t *written);
socks.c 223 ssize_t written; local
245 &written);
246 if(code || (written != packetsize + hostnamelen)) {
254 &written);
255 if(code || (written != hostnamelen)) {
379 ssize_t written; local
459 &written);
460 if(code || (written != (2 + (int)socksreq[1]))) {
538 code = Curl_write_plain(conn, sock, (char *)socksreq, len, &written);
539 if(code || (len != written)) {
    [all...]
  /external/deqp-deps/SPIRV-Tools/tools/
io.h 69 size_t written = fwrite(data, sizeof(T), count, fp); local
70 if (count != written) {
  /external/swiftshader/third_party/LLVM/lib/Support/
ErrorHandling.cpp 75 ssize_t written = ::write(2, MessageStr.data(), MessageStr.size()); local
76 (void)written; // If something went wrong, we deliberately just give up.
  /external/swiftshader/third_party/SPIRV-Tools/tools/
io.h 69 size_t written = fwrite(data, sizeof(T), count, fp); local
70 if (count != written) {
  /external/webrtc/webrtc/common_audio/
audio_ring_buffer.cc 35 const size_t written = WebRtc_WriteBuffer(buffers_[i], data[i], frames); local
36 RTC_CHECK_EQ(written, frames);
  /external/adhd/cras/src/server/
cras_a2dp_iodev.c 42 * bt_written_frames - Accumulated frames written to a2dp socket. Used
102 /* Calculates the number of virtual buffer in frames. Assuming all written
228 int written = 0; local
242 written = a2dp_write(
247 if (written == -EAGAIN)
249 else if (written < 0)
250 return written;
251 else if (written == 0)
268 int written = 0; local
303 written = a2dp_write(&a2dpio->a2dp
    [all...]
  /external/webrtc/webrtc/base/
optionsfile.cc 74 size_t written; local
78 res = stream.WriteAll(i->first.c_str(), i->first.length(), &written,
83 res = stream.WriteAll("=", 1, &written, &error);
87 res = stream.WriteAll(i->second.c_str(), i->second.length(), &written,
92 res = stream.WriteAll("\n", 1, &written, &error);
socketstream.cc 80 size_t* written, int* error) {
90 if (written)
91 *written = result;
  /device/generic/goldfish/ril/
atchannel.c 482 ssize_t written; local
495 written = write (s_fd, s + cur, len - cur);
496 } while (written < 0 && errno == EINTR);
498 if (written < 0) {
502 cur += written;
508 written = write (s_fd, "\r" , 1);
509 } while ((written < 0 && errno == EINTR) || (written == 0));
511 if (written < 0) {
521 ssize_t written; local
    [all...]
  /external/google-benchmark/src/
timers.cc 188 std::size_t written; local
192 written =
197 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo);
201 written = std::strftime(storage, sizeof(storage), "%x %X", ::gmtime(&now));
205 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo);
208 CHECK(written < kStorageSize);
209 ((void)written); // prevent unused variable in optimized mode.
  /external/libcxx/utils/google-benchmark/src/
timers.cc 188 std::size_t written; local
192 written =
197 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo);
201 written = std::strftime(storage, sizeof(storage), "%x %X", ::gmtime(&now));
205 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo);
208 CHECK(written < kStorageSize);
209 ((void)written); // prevent unused variable in optimized mode.
  /external/webrtc/webrtc/libjingle/xmpp/
xmppsocket.cc 85 int written = cricket_socket_->Send(buffer_.Data(), buffer_.Length()); local
86 if (written > 0) {
87 buffer_.Consume(written);
136 size_t written; local
139 &written, &error);
147 ASSERT(written > 0);
148 buffer_.Shift(written);
  /external/curl/src/macos/src/
curl_GUSIConfig.cpp 62 /**************** BEGIN GUSI CONFIGURATION **************************** * * GUSI Configuration section generated by GUSI Configurator * last modified: Mon Oct 29 15:41:51 2001 * * This section will be overwritten by the next run of Configurator. */ #define GUSI_SOURCE #include <GUSIConfig.h> #include <sys/cdefs.h> /* Declarations of Socket Factories */ __BEGIN_DECLS void GUSIwithInetSockets(); void GUSIwithLocalSockets(); void GUSIwithMTInetSockets(); void GUSIwithMTTcpSockets(); void GUSIwithMTUdpSockets(); void GUSIwithOTInetSockets(); void GUSIwithOTTcpSockets(); void GUSIwithOTUdpSockets(); void GUSIwithPPCSockets(); void GUSISetupFactories(); __END_DECLS /* Configure Socket Factories */ void GUSISetupFactories() { #ifdef GUSISetupFactories_BeginHook GUSISetupFactories_BeginHook #endif GUSIwithInetSockets(); #ifdef GUSISetupFactories_EndHook GUSISetupFactories_EndHook #endif } /* Declarations of File Devices */ __BEGIN_DECLS void GUSIwithNullSockets(); void GUSISetupDevices(); __END_DECLS /* Configure File Devices */ void GUSISetupDevices() { #ifdef GUSISetupDevices_BeginHook GUSISetupDevices_BeginHook #endif GUSIwithNullSockets(); #ifdef GUSISetupDevices_EndHook GUSISetupDevices_EndHook #endif } #ifndef __cplusplus #error GUSISetupConfig() needs to be written in C++ #endif GUSIConfiguration::FileSuffix sSuffices[] = { "", '????', '????' }; extern "C" vo (…)
  /external/deqp/framework/delibs/destream/
deThreadStream.c 56 deInt32 written = 0; local
61 while (written < read)
66 deOutStream_write(&(threadStream->producerStream), buffer, read - written, &wrote);
68 written += wrote;
  /external/libxml2/macos/src/
libxml2_GUSIConfig.cp 62 /**************** BEGIN GUSI CONFIGURATION **************************** * * GUSI Configuration section generated by GUSI Configurator * last modified: Wed Oct 31 17:07:45 2001 * * This section will be overwritten by the next run of Configurator. */ #define GUSI_SOURCE #include <GUSIConfig.h> #include <sys/cdefs.h> /* Declarations of Socket Factories */ __BEGIN_DECLS void GUSIwithInetSockets(); void GUSIwithLocalSockets(); void GUSIwithMTInetSockets(); void GUSIwithMTTcpSockets(); void GUSIwithMTUdpSockets(); void GUSIwithOTInetSockets(); void GUSIwithOTTcpSockets(); void GUSIwithOTUdpSockets(); void GUSIwithPPCSockets(); void GUSISetupFactories(); __END_DECLS /* Configure Socket Factories */ void GUSISetupFactories() { #ifdef GUSISetupFactories_BeginHook GUSISetupFactories_BeginHook #endif GUSIwithInetSockets(); #ifdef GUSISetupFactories_EndHook GUSISetupFactories_EndHook #endif } /* Declarations of File Devices */ __BEGIN_DECLS void GUSIwithNullSockets(); void GUSISetupDevices(); __END_DECLS /* Configure File Devices */ void GUSISetupDevices() { #ifdef GUSISetupDevices_BeginHook GUSISetupDevices_BeginHook #endif GUSIwithNullSockets(); #ifdef GUSISetupDevices_EndHook GUSISetupDevices_EndHook #endif } #ifndef __cplusplus #error GUSISetupConfig() needs to be written in C++ #endif GUSIConfiguration::FileSuffix sSuffices[] = { "", '????', '????' }; extern "C" vo (…)
  /external/llvm/test/MC/Mips/
micromips-el-fixup-data.s 5 # Check that fixup data is written in the microMIPS specific little endian
  /external/perfetto/src/profiling/memory/
proc_utils.cc 47 ssize_t written = snprintf(filename_buf, size, "/proc/%d/%s", pid, file); local
48 if (written < 0 || static_cast<size_t>(written) >= size) {
49 if (written < 0)
  /external/robolectric-shadows/
gen_test_config.mk 13 # Define variables to be written into the generated test_config.properties file.
17 # Snapshot the written variables so they cannot be polluted before the module is built.
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/
micromips-el-fixup-data.s 5 # Check that fixup data is written in the microMIPS specific little endian
  /external/syzkaller/vendor/golang.org/x/sys/unix/
syscall_dragonfly_amd64.go 40 func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
44 written = int(writtenOut)

Completed in 1760 milliseconds

1 23 4 5 6 7 8 91011>>