HomeSort by relevance Sort by last modified time
    Searched refs:file_stream (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium-trace/catapult/common/py_utils/py_utils/
logging_util.py 14 def CaptureLogs(file_stream):
15 if not file_stream:
20 fh = logging.StreamHandler(file_stream)
  /external/google-breakpad/src/processor/
microdump_stackwalk.cc 73 std::ifstream file_stream(microdump_file);
75 file_stream.seekg(0, std::ios_base::end);
76 bytes.resize(file_stream.tellg());
77 file_stream.seekg(0, std::ios_base::beg);
78 file_stream.read(&bytes[0], bytes.size());
microdump_processor_unittest.cc 64 std::ifstream file_stream(file_name.c_str(), std::ios::in);
65 ASSERT_TRUE(file_stream.good());
67 file_stream.seekg(0, std::ios_base::end);
68 ASSERT_TRUE(file_stream.good());
69 bytes.resize(file_stream.tellg());
70 file_stream.seekg(0, std::ios_base::beg);
71 ASSERT_TRUE(file_stream.good());
72 file_stream.read(&bytes[0], bytes.size());
73 ASSERT_TRUE(file_stream.good());
minidump_unittest.cc 98 ifstream file_stream(minidump_file_.c_str(), std::ios::in);
99 ASSERT_TRUE(file_stream.good());
101 file_stream.seekg(0, std::ios_base::end);
102 ASSERT_TRUE(file_stream.good());
103 bytes.resize(file_stream.tellg());
104 file_stream.seekg(0, std::ios_base::beg);
105 ASSERT_TRUE(file_stream.good());
106 file_stream.read(&bytes[0], bytes.size());
107 ASSERT_TRUE(file_stream.good());
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
io.h 48 // Returns and initializes the file_stream parameter if the output_filename
52 // failed for writing, file_stream is left with its fail_bit set.
54 std::ofstream* file_stream, std::ostream* err);
  /external/selinux/libsemanage/src/
parse_utils.c 26 tmp_info->file_stream = NULL;
48 info->file_stream = fopen(info->filename, "r");
49 if (!info->file_stream && (errno != ENOENT)) {
54 if (info->file_stream)
55 __fsetlocking(info->file_stream, FSETLOCKING_BYCALLER);
63 if (info->file_stream)
64 fclose(info->file_stream);
65 info->file_stream = NULL;
102 while (info->file_stream &&
103 ((len = getline(&buffer, &buf_len, info->file_stream)) > 0))
    [all...]
parse_utils.h 16 FILE *file_stream; /* Input stream handle */ member in struct:parse_info
  /frameworks/native/services/vr/performanced/
task.cpp 91 std::istream file_stream(&filebuf);
93 for (std::string line; std::getline(file_stream, line);) {
115 std::istream file_stream(&filebuf);
117 for (std::string line; std::getline(file_stream, line);) {
154 std::istream file_stream(&filebuf);
157 std::getline(file_stream, line);
cpu_set.cpp 264 std::istream file_stream(&filebuf);
266 for (std::string line; std::getline(file_stream, line);) {
278 std::istream file_stream(&filebuf);
281 if (std::getline(file_stream, line))
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/src/
io.cc 93 std::ofstream* file_stream, std::ostream* err) {
96 file_stream->open(output_filename.str(), std::ios_base::binary);
97 stream = file_stream;
98 if (file_stream->fail()) {
  /external/webrtc/webrtc/modules/audio_coding/test/
opus_test.cc 370 std::stringstream file_stream; local
371 file_stream << webrtc::test::OutputPath() << "opustest_out_"
373 file_name = file_stream.str();
375 file_stream.str("");
376 file_name = file_stream.str();
377 file_stream << webrtc::test::OutputPath() << "opusstandalone_out_"
379 file_name = file_stream.str();
delay_test.cc 168 std::stringstream file_stream; local
169 file_stream << "delay_test_" << FLAGS_codec << "_" << FLAGS_sample_rate_hz
171 std::cout << "Output file: " << file_stream.str() << std::endl << std::endl;
172 std::string file_name = webrtc::test::OutputPath() + file_stream.str();
TestRedFec.cc 472 std::stringstream file_stream; local
473 file_stream << webrtc::test::OutputPath();
474 file_stream << "TestRedFec_outFile_";
475 file_stream << test_number << ".pcm";
476 file_name = file_stream.str();
EncodeDecodeTest.cc 145 std::stringstream file_stream; local
146 file_stream << webrtc::test::OutputPath() << out_file_name
148 file_name = file_stream.str();
TestStereo.cc 824 std::stringstream file_stream; local
825 file_stream << webrtc::test::OutputPath() << "teststereo_out_" << test_number
827 file_name = file_stream.str();
  /external/tensorflow/tensorflow/compiler/xla/tests/
test_macros.cc 41 std::ifstream file_stream(path);
43 string contents((std::istreambuf_iterator<char>(file_stream)),
  /external/puffin/
Makefile 9 file_stream.cc \
  /external/webrtc/talk/media/devices/
linuxdevicemanager.cc 185 rtc::FileStream* file_stream = local
188 if (file_stream == NULL) return "";
190 config_parser.Attach(file_stream);
  /system/update_engine/common/
file_fetcher.cc 28 #include <brillo/streams/file_stream.h>
  /system/update_engine/
sideload_main.cc 29 #include <brillo/streams/file_stream.h>
  /external/webrtc/webrtc/call/
rtc_event_log.cc 212 FILE* file_stream = rtc::FdopenPlatformFileForWriting(log_file);
213 if (!file_stream) {
218 if (file_->OpenFromFileHandle(file_stream, true, false) != 0) {
  /external/libtextclassifier/datetime/
parser_test.cc 41 std::ifstream file_stream(file_name);
42 return std::string(std::istreambuf_iterator<char>(file_stream), {});
  /external/libbrillo/brillo/http/
http_form_data.cc 16 #include <brillo/streams/file_stream.h>
http_form_data_unittest.cc 12 #include <brillo/streams/file_stream.h>
  /system/update_engine/payload_consumer/
filesystem_verifier_action.cc 30 #include <brillo/streams/file_stream.h>

Completed in 303 milliseconds

1 2