HomeSort by relevance Sort by last modified time
    Searched refs:file_name (Results 101 - 125 of 237) sorted by null

1 2 3 45 6 7 8 910

  /external/bluetooth/bluedroid/btif/src/
btif_config_util.cpp 151 int btif_config_save_file(const char* file_name)
153 debug("in file name:%s", file_name);
162 ret = xml.SaveFile(file_name) == XML_SUCCESS;
165 int btif_config_load_file(const char* file_name)
167 //if(access(file_name, 0) != 0)
170 int err = xml.LoadFile(file_name);
458 static int load_bluez_cfg_value(const char* adapter_path, const char* file_name)
466 snprintf(path, sizeof(path), "%s/%s", adapter_path, file_name);
525 const char* file_name, const char* cfg_value_name, int type)
535 snprintf(path, sizeof(path), "%s/%s", adapter_path, file_name);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc 207 const string file_name = file->name(); local
230 if (params.has_java_package(file_name)) {
231 result += params.java_package(file_name);
235 if (params.has_java_outer_classname(file_name)) {
239 result += params.java_outer_classname(file_name);
  /external/chromium/chrome/browser/web_applications/
web_app.cc 309 FilePath file_name =
313 FilePath icon_file = web_app_path_.Append(file_name).ReplaceExtension(
353 FilePath shortcut_file = shortcut_paths[i].Append(file_name).
412 string16 file_name; local
419 file_name += c;
422 return FilePath(file_name);
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_main.cc 95 // Opens a file for incremental reading. file_name is the name of the file
103 bool OpenFileForReading(const string& file_name,
251 bool VCDiffFileBasedCoder::OpenFileForReading(const string& file_name,
257 if (!*file && file_name.empty()) {
265 *file = fopen(file_name.c_str(), "rb");
268 << file_name << "': " << strerror(errno) << std::endl;
275 << file_name << "': " << strerror(errno) << std::endl;
  /device/samsung/manta/libsensors/
IioSensorBase.cpp 27 const char *file_name) {
31 ret = asprintf(&name, "/sys/bus/iio/devices/%s/%s", input_name, file_name);
  /external/bison/lib/
bitset_stats.c 242 bitset_stats_read (const char *file_name)
249 if (!file_name)
250 file_name = BITSET_STATS_FILE;
252 file = fopen (file_name, "r");
272 bitset_stats_write (const char *file_name)
279 if (!file_name)
280 file_name = BITSET_STATS_FILE;
282 file = fopen (file_name, "w");
  /external/bison/src/
files.c 181 /* Decompose FILE_NAME in four parts: *BASE, *TAB, and *EXT, the fourth
182 part, (the directory) is ranging from FILE_NAME to the char before
191 None are allocated, they are simply pointers to parts of FILE_NAME.
210 file_name_split (const char *file_name,
213 *base = base_name (file_name);
  /external/chromium/googleurl/src/
url_parse.cc 492 Component* file_name) {
495 file_name->reset();
517 *file_name = MakeRange(i + 1, file_end);
524 *file_name = MakeRange(path.begin, file_end);
656 Component* file_name) {
657 DoExtractFileName(url, path, file_name);
662 Component* file_name) {
663 DoExtractFileName(url, path, file_name);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 104 // Opens the file 'file_name" and reads up to 'max_len' bytes.
108 uptr ReadFileToBuffer(const char *file_name, char **buff,
113 void *MapFileToMemory(const char *file_name, uptr *buff_size);
sanitizer_posix.cc 82 void *MapFileToMemory(const char *file_name, uptr *buff_size) {
83 fd_t fd = internal_open(file_name, false);
  /external/oprofile/libutil++/
file_manip.cpp 149 string op_dirname(string const & file_name)
151 string result = erase_trailing_path_separator(file_name);
  /external/webrtc/test/testsupport/
fileutils.cc 113 bool FileExists(std::string file_name) {
115 return stat(file_name.c_str(), &file_info) == 0;
  /pdk/build/
prepare_pdk_tree.py 145 for file_name in copy_files_list:
146 create_symbolic_link(sourceDir, targetDir, file_name)
  /external/chromium/testing/gtest/samples/
sample9_unittest.cc 77 test_part_result.file_name(),
  /external/gtest/samples/
sample9_unittest.cc 77 test_part_result.file_name(),
  /external/protobuf/gtest/samples/
sample9_unittest.cc 77 test_part_result.file_name(),
  /external/webrtc/src/system_wrappers/source/
data_log.cc 82 // Creates a log file, named as specified in the string file_name, to
84 int CreateLogFile(const std::string& file_name);
206 int LogTable::CreateLogFile(const std::string& file_name) {
207 if (file_name.length() == 0)
211 file_->OpenFile(file_name.c_str(),
  /system/core/init/
init.h 137 int load_565rle_image( char *file_name );
  /external/elfutils/libdwfl/
libdwflP.h 296 char **file_name) internal_function;
306 const char *file_name, int fd,
312 const char *file_name,
  /external/libpng/
example.c 58 int check_if_png(char *file_name, FILE **fp)
63 if ((*fp = fopen(file_name, "rb")) == NULL)
83 void read_png(char *file_name) /* We need to open the file */
92 if ((fp = fopen(file_name, "rb")) == NULL)
561 void write_png(char *file_name /* , ... other image information ... */)
569 fp = fopen(file_name, "wb");
  /external/opencv/cxcore/src/
cxerror.cpp 335 const char* file_name, int line )
349 context->err_ctx.file = file_name;
356 file_name, line, context->userdata );
  /external/chromium/base/
tracked_objects.cc 676 birth_files_[location.file_name()]++;
771 if (left.location().file_name() != right.location().file_name()) {
772 int comp = strcmp(left.location().file_name(),
773 right.location().file_name());
835 if (left.location().file_name() != right.location().file_name()) {
836 int comp = strcmp(left.location().file_name(),
837 right.location().file_name());
885 if (!strstr(sample.location().file_name(), required_.c_str())
    [all...]
file_util_unittest.cc 657 FilePath file_name = temp_dir_.path().Append(FPL("Test DeleteFile 1.txt")); local
658 CreateTextFile(file_name, bogus_content);
659 ASSERT_TRUE(file_util::PathExists(file_name));
662 EXPECT_TRUE(file_util::Delete(file_name, false));
663 EXPECT_FALSE(file_util::PathExists(file_name));
666 file_name = temp_dir_.path().Append(FPL("Test DeleteFile 2.txt"));
667 CreateTextFile(file_name, bogus_content);
668 ASSERT_TRUE(file_util::PathExists(file_name));
671 EXPECT_TRUE(file_util::Delete(file_name, true));
672 EXPECT_FALSE(file_util::PathExists(file_name));
681 FilePath file_name = temp_dir_.path().Append(FPL("Test DeleteWildCard.txt")); local
733 FilePath file_name = test_subdir.Append(FPL("Test DeleteDir.txt")); local
763 FilePath file_name = test_subdir.Append(FPL("Test DeleteDirRecursive.txt")); local
1208 FilePath file_name = temp_dir_.path().Append(L"Test File.txt"); local
    [all...]
  /external/chromium/chrome/browser/download/
save_package.cc 453 FilePath::StringType file_name = pure_file_name + file_name_ext;
456 if (file_name_set_.find(file_name) == file_name_set_.end()) {
457 file_name_set_.insert(file_name);
484 file_name = temp_file.RemoveExtension().BaseName().value();
488 max_path, &file_name))
496 file_name = new_name;
503 file_name_set_.insert(file_name);
506 DCHECK(!file_name.empty());
507 generated_name->assign(file_name);
1171 FilePath::StringType file_name = name_with_proper_ext.value(); local
    [all...]
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 1174 LCHAR file_name [P_PATH_MAX]; local
1349 LCHAR file_name [P_PATH_MAX]; local
1377 LCHAR file_name [P_PATH_MAX]; local
1858 LCHAR file_name [P_PATH_MAX]; local
1916 LCHAR file_name [P_PATH_MAX]; local
    [all...]

Completed in 1033 milliseconds

1 2 3 45 6 7 8 910