HomeSort by relevance Sort by last modified time
    Searched refs:fname (Results 1 - 25 of 587) 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::__anon13658
39 std::string f = cases[i].fname;
79 std::string fname; local
81 fname = CurrentFileName("foo");
82 ASSERT_EQ("foo/", std::string(fname.data(), 4));
83 ASSERT_TRUE(ParseFileName(fname.c_str() + 4, &number, &type));
87 fname = LockFileName("foo");
88 ASSERT_EQ("foo/", std::string(fname.data(), 4));
89 ASSERT_TRUE(ParseFileName(fname.c_str() + 4, &number, &type));
93 fname = LogFileName("foo", 192)
    [all...]
  /external/openfst/src/script/
fst-class.cc 44 FstT *ReadFst(istream &in, const string &fname) {
46 LOG(ERROR) << "ReadFst: Can't open file: " << fname;
51 if (!hdr.Read(in, fname)) {
55 FstReadOptions read_options(fname, &hdr);
72 FstClass *FstClass::Read(const string &fname) {
73 if (!fname.empty()) {
74 ifstream in(fname.c_str(), ifstream::in | ifstream::binary);
75 return ReadFst<FstClass>(in, fname);
89 MutableFstClass *MutableFstClass::Read(const string &fname, bool convert) {
91 if (!fname.empty())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
xxd.pl 33 $fname = shift;
36 open($input, '<', $fname) or die "Can't open file for read: $fname $!";
  /external/dropbear/libtomcrypt/src/hashes/helper/
hash_file.c 20 @param fname The name of the file you wish to hash
25 int hash_file(int hash, const char *fname, unsigned char *out, unsigned long *outlen)
32 LTC_ARGCHK(fname != NULL);
40 in = fopen(fname, "rb");
  /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);
  /external/elfutils/tests/
arls.c 8 static int handle (const char *fname);
28 handle (const char *fname)
30 int fd = open (fname, O_RDONLY);
33 printf ("cannot open '%s': %m\n", fname);
41 fname, elf_errmsg (-1));
48 printf ("'%s' is no archive\n", fname);
54 printf ("%s:\n", fname);
63 fname, elf_errmsg (-1));
  /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...]
  /bionic/libc/bionic/
utmp.c 79 utmpname(const char *fname)
81 size_t len = strlen(fname);
87 if (fname[len - 1] == 'x')
90 (void)strlcpy(utfile, fname, sizeof(utfile));
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cppdefault.h 37 const char *const fname; /* The name of the directory. */ member in struct:default_include
44 const char add_sysroot; /* FNAME should be prefixed by
46 const char multilib; /* FNAME should have the multilib path
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cppdefault.h 37 const char *const fname; /* The name of the directory. */ member in struct:default_include
44 const char add_sysroot; /* FNAME should be prefixed by
46 const char multilib; /* FNAME should have the multilib path
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cppdefault.h 37 const char *const fname; /* The name of the directory. */ member in struct:default_include
44 const char add_sysroot; /* FNAME should be prefixed by
46 const char multilib; /* FNAME should have the multilib path
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cppdefault.h 37 const char *const fname; /* The name of the directory. */ member in struct:default_include
44 const char add_sysroot; /* FNAME should be prefixed by
46 const char multilib; /* FNAME should have the multilib path

Completed in 541 milliseconds

1 2 3 4 5 6 7 8 91011>>