Searched refs:filename (Results 176 - 200 of 1510) sorted by relevance

1234567891011>>

/external/ppp/pppd/plugins/radius/
H A Ddict.c36 int rc_read_dictionary (char *filename) argument
54 if ((dictfd = fopen (filename, "r")) == (FILE *) NULL)
57 filename, strerror(errno));
77 line_no, filename);
84 line_no, filename);
112 line_no, filename);
123 line_no, filename);
131 line_no, filename);
139 line_no, filename);
164 line_no, filename);
[all...]
/external/qemu/android/protocol/
H A Dcore-commands-api.h79 * type, filename - Request parameters that define the file for which path is
85 const char* filename,
/external/qemu/
H A Dqemu-config.h17 int qemu_read_config_file(const char *filename);
/external/skia/include/core/
H A DSkMMapStream.h17 SkMMAPStream(const char filename[]);
/external/skia/legacy/include/core/
H A DSkMMapStream.h17 SkMMAPStream(const char filename[]);
/external/skia/legacy/src/animator/
H A DSkSnapshot.h23 SkString filename; member in class:SkSnapshot
/external/skia/src/animator/
H A DSkSnapshot.h23 SkString filename; member in class:SkSnapshot
/external/srec/srec/AcousticState/src/
H A DAcousticState.c39 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateLoad(SR_Recognizer* recognizer, const LCHAR* filename) argument
50 return impl->acousticState->load(recognizer, filename);
53 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateSave(SR_Recognizer* recognizer, const LCHAR* filename) argument
64 return impl->acousticState->save(recognizer, filename);
/external/webkit/Source/WebCore/platform/android/
H A DFileSystemAndroid.cpp61 String filename; local
68 filename = builder.toString();
69 handle = open(filename.utf8().data(), O_WRONLY | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
73 return filename;
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dresult_summary.py76 self.tests_by_expectation[result.type].add(result.filename)
77 self.results[result.filename] = result
80 self.failures[result.filename] = result.failures
84 self.unexpected_results[result.filename] = result
/external/eigen/bench/btl/data/
H A Dsmooth.cxx31 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops);
32 void write_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops);
44 INFOS("!!! Error ... usage : main filename window_half_width smooth_filename");
51 string filename=argv[1]; local
54 INFOS(filename);
60 read_xy_file(filename,tab_sizes,tab_mflops);
160 void write_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){ argument
162 ofstream output_file (filename.c_str(),ios::out) ;
176 void read_xy_file(const string & filename, vector<int> & tab_sizes, vector<double> & tab_mflops){ argument
178 ifstream input_file (filename
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DRawHeightMap.java73 * @param filename
78 * if the filename is null or not RAW, and if the size is 0 or
81 public RawHeightMap(String filename, int size) throws Exception { argument
82 this(filename, size, FORMAT_8BIT, false);
91 public RawHeightMap(String filename, int size, int format, boolean swapxy) throws Exception { argument
92 // varify that filename and size are valid.
93 if (null == filename || size <= 0) {
94 throw new Exception("Must supply valid filename and "
98 setup(new FileInputStream(filename), size, format, swapxy);
100 throw new Exception("height file not found: " + filename);
222 setFilename(String filename) argument
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dtestoutput_unittest.py33 def __init__(self, filename, contents="fake contents"):
34 self._filename = filename
64 def _check_name(self, filename, expected_test_name):
68 filename = filename.replace('/', os.path.sep)
70 r = testoutput.TextTestOutput(None, FakeFile(filename))
73 def _check_platform(self, filename, expected_platform):
77 filename = filename.replace('/', os.path.sep)
78 r = testoutput.TextTestOutput(None, FakeFile(filename))
[all...]
/external/chromium/chrome/common/
H A Djson_value_serializer_perftest.cc29 FilePath filename; local
30 EXPECT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &filename));
31 filename = filename.AppendASCII(kTestFilenames[i]);
34 EXPECT_TRUE(file_util::ReadFileToString(filename, &test_case));
/external/javassist/src/main/javassist/tools/web/
H A DWebserver.java241 String filename, urlName;
244 filename = urlName = cmd.substring(5, cmd.indexOf(' ', 5));
248 if (filename.endsWith(".class"))
250 else if (filename.endsWith(".html") || filename.endsWith(".htm"))
252 else if (filename.endsWith(".gif"))
254 else if (filename.endsWith(".jpg"))
259 len = filename.length();
261 && letUsersSendClassfile(out, filename, len))
264 checkFilename(filename, le
316 checkFilename(String filename, int len) argument
329 letUsersSendClassfile(OutputStream out, String filename, int length) argument
[all...]
/external/jsilver/src/org/clearsilver/jni/
H A DJniCs.java81 * @param filename the name of file to read in and parse.
86 public void parseFile(String filename) throws IOException { argument
90 _parseFile(csptr, filename, fileLoader != null);
108 protected String fileLoad(String filename) throws IOException, argument
117 String result = aFileLoader.load(localHDF, filename);
148 private native void _parseFile(long ptr, String filename, argument
/external/opencv/otherlibs/highgui/
H A Dgrfmt_tiff.h96 GrFmtTiffReader( const char* filename );
116 GrFmtTiffReader( const char* filename );
151 GrFmtTiffWriter( const char* filename );
173 GrFmtReader* NewReader( const char* filename );
174 GrFmtWriter* NewWriter( const char* filename );
/external/openssh/
H A Dssh-add.c99 delete_file(AuthenticationConnection *ac, const char *filename) argument
105 public = key_load_public(filename, &comment);
107 printf("Bad key file %s\n", filename);
111 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
114 fprintf(stderr, "Could not remove identity: %s\n", filename);
142 add_file(AuthenticationConnection *ac, const char *filename) argument
150 if (strcmp(filename, "-") == 0) {
152 filename = "(stdin)";
153 } else if ((fd = open(filename, O_RDONLY)) < 0) {
154 perror(filename);
[all...]
/external/oprofile/libpp/
H A Dprofile_container.cpp35 : filename(id), percent(percent_)
41 return filename < lhs.filename;
44 debug_name_id filename; member in struct:__anon10812::filename_by_samples
45 // ratio of samples which belongs to this filename.
105 string filename; local
106 if (abfd.get_linenr(i, start, filename,
108 symb_entry.sample.file_loc.filename =
109 debug_names.create(filename);
149 string filename; local
263 find_symbol(debug_name_id filename, size_t linenr) const argument
288 samples_count(debug_name_id filename, size_t linenr) const argument
[all...]
H A Dsymbol.h37 debug_name_id filename; member in struct:file_location
42 // Note we sort on filename id not on string
43 return filename < rhs.filename ||
44 (filename == rhs.filename && linenr < rhs.linenr);
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.h86 // Strips ".proto" or ".protodevel" from the end of a filename.
87 string StripProto(const string& filename);
104 string FilenameIdentifier(const string& filename);
107 string GlobalAddDescriptorsName(const string& filename);
110 string GlobalAssignDescriptorsName(const string& filename);
113 string GlobalShutdownFileName(const string& filename);
H A Dcpp_helpers.cc184 string StripProto(const string& filename) { argument
185 if (HasSuffixString(filename, ".protodevel")) {
186 return StripSuffixString(filename, ".protodevel");
188 return StripSuffixString(filename, ".proto");
307 string FilenameIdentifier(const string& filename) { argument
309 for (int i = 0; i < filename.size(); i++) {
310 if (ascii_isalnum(filename[i])) {
311 result.push_back(filename[i]);
317 result.append(FastHexToBuffer(static_cast<uint8>(filename[i]), buffer));
324 string GlobalAddDescriptorsName(const string& filename) { argument
329 GlobalAssignDescriptorsName(const string& filename) argument
334 GlobalShutdownFileName(const string& filename) argument
[all...]
/external/icu4c/test/intltest/
H A Dtestidn.cpp50 parseMappings(const char *filename, UBool reportError,TestIDNA& test, UErrorCode *pErrorCode);
89 char* filename = (char*) malloc(strlen(IntlTest::pathToDataDirectory())*1024); local
100 /* prepare the filename beginning with the source dir */
102 filename[0] = 0x2E;
103 filename[1] = U_FILE_SEP_CHAR;
104 uprv_strcpy(filename+2,srcDir);
106 uprv_strcpy(filename, srcDir);
108 basename=filename+uprv_strlen(filename);
109 if(basename>filename
201 parseMappings(const char *filename,UBool reportError, TestIDNA& test, UErrorCode *pErrorCode) argument
[all...]
/external/clang/tools/scan-view/
H A Dstartfile.py23 def open(self, filename):
69 def open(self, filename):
70 if isinstance(filename, basestring):
71 cmdline = self.args + [filename]
74 cmdline = self.args + filename
87 def open(self, filename):
89 os.startfile(filename)
200 def open(filename):
203 return _open(filename)
/external/v8/src/
H A Dv8utils.h76 byte* ReadBytes(const char* filename, int* size, bool verbose = true);
79 // Append size chars from str to the file given by filename.
81 int AppendChars(const char* filename,
87 // Write size chars from str to the file given by filename.
89 int WriteChars(const char* filename,
95 // Write size bytes to the file given by filename.
97 int WriteBytes(const char* filename,
106 // to the file given by filename. Only the first len chars are written.
107 int WriteAsCFile(const char* filename, const char* varname,
194 Vector<const char> ReadFile(const char* filename,
[all...]

Completed in 672 milliseconds

1234567891011>>