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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/restat/src/
touch.py 12 for fname in sys.argv[1:]:
13 if os.path.exists(fname):
14 os.utime(fname, None)
16 open(fname, 'w').close()
  /device/generic/goldfish/opengl/system/egl/
ClientAPIExts.cpp 29 #define FUNC_TYPE(fname) __egl_ ## fname ## _t
30 #define API_ENTRY(fname,params,args) \
31 typedef void (GL_APIENTRY *FUNC_TYPE(fname)) params;
33 #define API_ENTRY_RET(rtype,fname,params,args) \
34 typedef rtype (GL_APIENTRY *FUNC_TYPE(fname)) params;
46 #define API_ENTRY(fname,params,args) \
47 FUNC_TYPE(fname) fname;
49 #define API_ENTRY_RET(rtype,fname,params,args)
133 const char *fname; member in struct:ClientAPIExts::_client_ext_funcs
    [all...]
ClientAPIExts.h 25 void* getProcAddress(const char *fname);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
ClientAPIExts.cpp 31 #define FUNC_TYPE(fname) __egl_ ## fname ## _t
32 #define API_ENTRY(fname,params,args) \
33 typedef void (GL_APIENTRY *FUNC_TYPE(fname)) params;
35 #define API_ENTRY_RET(rtype,fname,params,args) \
36 typedef rtype (GL_APIENTRY *FUNC_TYPE(fname)) params;
48 #define API_ENTRY(fname,params,args) \
49 FUNC_TYPE(fname) fname;
51 #define API_ENTRY_RET(rtype,fname,params,args)
135 const char *fname; member in struct:ClientAPIExts::_client_ext_funcs
    [all...]
ClientAPIExts.h 25 __translatorMustCastToProperFunctionPointerType getProcAddress(const char *fname);
  /external/ppp/pppd/plugins/radius/
radattr.c 70 char fname[512]; local
75 slprintf(fname, sizeof(fname), "/var/run/radattr.%s", ifname);
76 fp = fopen(fname, "w");
78 warn("radattr plugin: Could not open %s for writing: %m", fname);
90 dbglog("RADATTR plugin wrote %d line(s) to file %s.", cnt, fname);
106 char fname[512]; local
108 slprintf(fname, sizeof(fname), "/var/run/radattr.%s", ifname);
109 (void) remove(fname);
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
filename_test.cc 23 const char* fname; member in struct:leveldb::__anon16095
40 std::string f = cases[i].fname;
80 std::string fname; local
82 fname = CurrentFileName("foo");
83 ASSERT_EQ("foo/", std::string(fname.data(), 4));
84 ASSERT_TRUE(ParseFileName(fname.c_str() + 4, &number, &type));
88 fname = LockFileName("foo");
89 ASSERT_EQ("foo/", std::string(fname.data(), 4));
90 ASSERT_TRUE(ParseFileName(fname.c_str() + 4, &number, &type));
94 fname = LogFileName("foo", 192)
    [all...]
leveldb_main.cc 23 bool GuessType(const std::string& fname, FileType* type) {
24 size_t pos = fname.rfind('/');
27 basename = fname;
29 basename = std::string(fname.data() + pos + 1, fname.size() - pos - 1);
46 bool PrintLogContents(Env* env, const std::string& fname,
49 Status s = env->NewSequentialFile(fname, &file);
104 bool DumpLog(Env* env, const std::string& fname) {
105 return PrintLogContents(env, fname, WriteBatchPrinter);
120 bool DumpDescriptor(Env* env, const std::string& fname) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dircache.py 17 for fname in os.listdir(self.tempdir):
18 self.delTemp(fname)
21 def writeTemp(self, fname):
22 f = open(os.path.join(self.tempdir, fname), 'w')
25 def mkdirTemp(self, fname):
26 os.mkdir(os.path.join(self.tempdir, fname))
28 def delTemp(self, fname):
29 fname = os.path.join(self.tempdir, fname)
30 if os.path.isdir(fname)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dircache.py 17 for fname in os.listdir(self.tempdir):
18 self.delTemp(fname)
21 def writeTemp(self, fname):
22 f = open(os.path.join(self.tempdir, fname), 'w')
25 def mkdirTemp(self, fname):
26 os.mkdir(os.path.join(self.tempdir, fname))
28 def delTemp(self, fname):
29 fname = os.path.join(self.tempdir, fname)
30 if os.path.isdir(fname)
    [all...]
  /external/wpa_supplicant_8/hostapd/
config_file.h 12 struct hostapd_config * hostapd_config_read(const char *fname);
  /frameworks/native/opengl/tools/glgen/src/
CodeEmitter.java 21 void addNativeRegistration(String fname);
CFunc.java 24 String fname; field in class:CFunc
41 public void setName(String fname) {
42 this.fname = fname;
46 return fname;
108 String s = "Function " + fname + " returns " + ftype + ": ";
131 String fname = tokens[i++]; local
132 if (fname.equals("*")) {
134 fname = tokens[i++];
137 cfunc.setName(fname);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/app/
Fragment_Delegate.java 53 /*package*/ static Fragment instantiate(Context context, String fname) {
54 return instantiate(context, fname, null);
63 * @param fname The class name of the fragment to instantiate.
72 /*package*/ static Fragment instantiate(Context context, String fname, Bundle args) {
75 Fragment f = (Fragment) sProjectCallback.loadView(fname,
87 throw new Fragment.InstantiationException("Unable to instantiate fragment " + fname
91 throw new Fragment.InstantiationException("Unable to instantiate fragment " + fname
95 throw new Fragment.InstantiationException("Unable to instantiate fragment " + fname
99 throw new Fragment.InstantiationException("Unable to instantiate fragment " + fname
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.h 86 bool GetElementMinBound(const Key &fname, double *val) const {
87 return GetValue(wmin_, fname, val);
89 bool GetElementMaxBound(const Key &fname, double *val) const {
90 return GetValue(wmax_, fname, val);
92 void SetElementMinBound(const Key &fname, const double bound) {
93 wmin_[fname] = bound;
95 void SetElementMaxBound(const Key &fname, const double bound) {
96 wmax_[fname] = bound;
99 double GetElement(const Key &fname) const {
101 GetValue(w_, fname, &val)
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/util/
env.cc 37 const std::string& fname,
40 Status s = env->NewWritableFile(fname, &file);
53 env->DeleteFile(fname);
59 const std::string& fname) {
60 return DoWriteStringToFile(env, data, fname, false);
64 const std::string& fname) {
65 return DoWriteStringToFile(env, data, fname, true);
68 Status ReadFileToString(Env* env, const std::string& fname, std::string* data) {
71 Status s = env->NewSequentialFile(fname, &file);
testutil.h 39 virtual Status NewWritableFile(const std::string& fname,
44 return Status::IOError(fname, "fake error");
46 return target()->NewWritableFile(fname, result);
  /external/llvm/utils/release/
findRegressions-nightly.py 22 fname = ''
33 fname = tmp[1].strip('\r\n')
35 fname = tmp[0].strip('\r\n')
37 if not test.has_key(fname) :
38 test[fname] = {}
41 test[fname][k] = 'NA'
42 test[fname][t[1]] = t[0]
44 print test[fname][t[1]]
53 test[fname][tp + n] = float(t[2].split(' ')[2])
55 print test[fname][tp + n
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cppdefault.h 36 const char *const fname; /* The name of the directory. */ member in struct:default_include
43 const char add_sysroot; /* FNAME should be prefixed by
45 const char multilib; /* FNAME should have appended
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv.cc 240 virtual Status NewSequentialFile(const std::string& fname,
243 if (file_map_.find(fname) == file_map_.end()) {
245 return Status::IOError(fname, "File not found");
248 *result = new SequentialFileImpl(file_map_[fname]);
252 virtual Status NewRandomAccessFile(const std::string& fname,
255 if (file_map_.find(fname) == file_map_.end()) {
257 return Status::IOError(fname, "File not found");
260 *result = new RandomAccessFileImpl(file_map_[fname]);
264 virtual Status NewWritableFile(const std::string& fname,
267 if (file_map_.find(fname) != file_map_.end())
    [all...]
  /external/oprofile/
opev.py 63 def ev(fname,ovf):
65 evf = open(fname, "r")
71 ovf.write("// events from file %s\n" % fname)
80 fname = "events/mips/24K/events" # convenient testing variable
82 fname = sys.argv[1] variable
83 ovf = open(fname + ".h", "w")
84 ev(fname, ovf)
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiler.cc 80 // Start profiler to write profile info into fname
81 bool Start(const char* fname, const ProfilerOptions* options);
140 char fname[PATH_MAX]; local
141 if (!GetUniquePathFromEnv("CPUPROFILE", fname)) {
150 if (!Start(fname, NULL)) {
152 fname, strerror(errno));
156 bool CpuProfiler::Start(const char* fname, const ProfilerOptions* options) {
168 if (!collector_.Start(fname, collector_options)) {
301 extern "C" PERFTOOLS_DLL_DECL int ProfilerStart(const char* fname) {
302 return CpuProfiler::instance_.Start(fname, NULL)
    [all...]
  /external/fio/
filelock.c 85 int fio_trylock_file(const char *fname)
90 hash = jhash(fname, strlen(fname), 0);
121 void fio_lock_file(const char *fname)
126 hash = jhash(fname, strlen(fname), 0);
136 void fio_unlock_file(const char *fname)
141 hash = jhash(fname, strlen(fname), 0);
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageObject.java 85 String fname = fieldType.toString(); local
86 sprint(fname + ":");
87 if (fname.compareTo("int") == 0) {
90 } else if (fname.compareTo("short") == 0) {
93 } else if (fname.compareTo("char") == 0) {
96 } else if (fname.compareTo("long") == 0) {
99 } else if (fname.compareTo("boolean") == 0) {
102 } else if (fname.compareTo("double") == 0) {
105 } else if (fname.compareTo("float") == 0) {
  /external/chromium_org/third_party/leveldatabase/
env_chromium_stdio.h 14 ChromiumWritableFile(const std::string& fname,
47 virtual leveldb::Status NewSequentialFile(const std::string& fname,
50 const std::string& fname,
52 virtual leveldb::Status NewWritableFile(const std::string& fname,
54 virtual leveldb::Status NewLogger(const std::string& fname,

Completed in 1266 milliseconds

1 2 3 4 5 6 7 8 91011>>