Home
last modified time | relevance | path

Searched refs:ftype (Results 1 – 25 of 45) sorted by relevance

12

/external/libcxx/utils/google-benchmark/tools/gbench/
Dutil.py62 ftype = IT_Invalid
69 ftype = IT_Executable
71 ftype = IT_JSON
74 return ftype, err_msg
83 ftype, msg = classify_input_file(filename)
84 if ftype == IT_Invalid:
87 return ftype
158 ftype = check_input_file(filename)
159 if ftype == IT_JSON:
161 elif ftype == IT_Executable:
/external/google-benchmark/tools/gbench/
Dutil.py62 ftype = IT_Invalid
69 ftype = IT_Executable
71 ftype = IT_JSON
74 return ftype, err_msg
83 ftype, msg = classify_input_file(filename)
84 if ftype == IT_Invalid:
87 return ftype
158 ftype = check_input_file(filename)
159 if ftype == IT_JSON:
161 elif ftype == IT_Executable:
/external/python/cpython2/Lib/
Dtoaiff.py90 ftype = sndhdr.whathdr(fname)
91 if ftype:
92 ftype = ftype[0] # All we're interested in
100 if ftype == 'aiff':
102 if ftype is None or not ftype in table:
103 raise error, '%s: unsupported audio file type %r' % (filename, ftype)
107 sts = table[ftype].copy(fname, temp)
/external/python/cpython2/Lib/plat-irix6/
Dtorgb.py85 ftype = imghdr.what(fname)
93 if ftype == 'rgb':
95 if ftype is None or not table.has_key(ftype):
96 raise error, '%s: unsupported image file type %r' % (filename, ftype)
99 sts = table[ftype].copy(fname, temp)
/external/python/cpython2/Lib/plat-irix5/
Dtorgb.py85 ftype = imghdr.what(fname)
93 if ftype == 'rgb':
95 if ftype is None or not table.has_key(ftype):
96 raise error, '%s: unsupported image file type %r' % (filename, ftype)
99 sts = table[ftype].copy(fname, temp)
/external/f2fs-tools/fsck/
Dfsck.c343 static int __check_inode_mode(u32 nid, enum FILE_TYPE ftype, u16 mode) in __check_inode_mode() argument
345 if (ftype >= F2FS_FT_MAX) in __check_inode_mode()
356 if (S_ISLNK(mode) && ftype != F2FS_FT_SYMLINK) in __check_inode_mode()
358 if (S_ISREG(mode) && ftype != F2FS_FT_REG_FILE) in __check_inode_mode()
360 if (S_ISDIR(mode) && ftype != F2FS_FT_DIR) in __check_inode_mode()
362 if (S_ISCHR(mode) && ftype != F2FS_FT_CHRDEV) in __check_inode_mode()
364 if (S_ISBLK(mode) && ftype != F2FS_FT_BLKDEV) in __check_inode_mode()
366 if (S_ISFIFO(mode) && ftype != F2FS_FT_FIFO) in __check_inode_mode()
368 if (S_ISSOCK(mode) && ftype != F2FS_FT_SOCK) in __check_inode_mode()
373 nid, ftype, mode); in __check_inode_mode()
[all …]
/external/selinux/gui/
DfcontextPage.py175 ftype = store.get_value(iter, FTYPE_COL)
177 …tatusoutput("semanage fcontext -d -f '%s' '%s'" % (seobject.file_type_str_to_option[ftype], fspec))
193 ftype = list_model.get_value(it, 0)
195 …context -a -t %s -r %s -f '%s' '%s'" % (type, mls, seobject.file_type_str_to_option[ftype], fspec))
203 self.store.set_value(iter, FTYPE_COL, ftype)
212 ftype = list_model.get_value(iter, 0)
214 …context -m -t %s -r %s -f '%s' '%s'" % (type, mls, seobject.file_type_str_to_option[ftype], fspec))
222 self.store.set_value(iter, FTYPE_COL, ftype)
/external/clang/test/CodeGen/
Dblocks.c30 typedef double ftype(double); typedef
33 ftype ^test2 = ^ftype {
/external/clang/test/CodeGenCXX/
Dlinkage.cpp124 typedef S(*ftype)(); in g() typedef
125 return reinterpret_cast<void *>(f<ftype>); in g()
141 typedef S(*ftype)(I * x); in g() typedef
142 return reinterpret_cast<void *>(f<ftype>); in g()
/external/openssh/
Dmux.c520 format_forward(u_int ftype, struct Forward *fwd) in format_forward() argument
524 switch (ftype) { in format_forward()
550 fatal("%s: unknown forward type %u", __func__, ftype); in format_forward()
667 u_int ftype; in process_mux_open_fwd() local
674 if (buffer_get_int_ret(&ftype, m) != 0 || in process_mux_open_fwd()
707 (fwd_desc = format_forward(ftype, &fwd))); in process_mux_open_fwd()
709 if (ftype != MUX_FWD_LOCAL && ftype != MUX_FWD_REMOTE && in process_mux_open_fwd()
710 ftype != MUX_FWD_DYNAMIC) { in process_mux_open_fwd()
711 logit("%s: invalid forwarding type %u", __func__, ftype); in process_mux_open_fwd()
720 if (ftype == MUX_FWD_DYNAMIC && fwd.listen_path) { in process_mux_open_fwd()
[all …]
/external/python/cpython2/Lib/test/
Dtest_bsddb185.py34 ftype = whichdb.whichdb(dbfile)
35 self.assertNotEqual(ftype, "bsddb185")
/external/v8/src/
Dflag-definitions.h28 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument
30 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) \ argument
37 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument
40 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument
48 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument
54 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \ argument
55 { Flag::TYPE_##ftype, #nam, &FLAG_##nam, &FLAGDEFAULT_##nam, cmt, false } \
57 #define FLAG_ALIAS(ftype, ctype, alias, nam) \ argument
59 Flag::TYPE_##ftype, #alias, &FLAG_##nam, &FLAGDEFAULT_##nam, \
78 #define FLAG_FULL(ftype, ctype, nam, def, cmt) argument
[all …]
/external/clang/test/SemaTemplate/
Dinstantiate-function-2.cpp39 typedef void ftype(int); typedef
42 ftype f;
/external/u-boot/tools/dtoc/
Ddtb_platdata.py87 def get_value(ftype, value): argument
99 if ftype == fdt.TYPE_INT:
101 elif ftype == fdt.TYPE_BYTE:
103 elif ftype == fdt.TYPE_STRING:
105 elif ftype == fdt.TYPE_BOOL:
107 elif ftype == fdt.TYPE_INT64:
/external/curl/tests/
Ddirectories.pm202 my $ftype = $file{'type'} ? $file{'type'} : "-";
215 push(@contentlist, "$ftype$fperm $fhlink $fuser $fgroup $fsize $ftime $file{'name'}$eol");
/external/vulkan-headers/registry/
Dreg.py695 def generateFeature(self, fname, ftype, dictionary): argument
700 self.gen.logMsg('diag', 'generateFeature: generating', ftype, fname)
710 self.gen.logMsg('diag', 'Skipping', ftype, fname, '(not required)')
713 self.gen.logMsg('diag', 'Skipping', ftype, fname, '(already declared)')
732 if (ftype == 'type'):
830 elif (ftype == 'command'):
841 elif (ftype == 'enum'):
849 self.gen.logMsg('diag', 'Emitting', ftype, fname, 'declaration')
852 self.gen.logMsg('diag', 'Skipping', ftype, fname,
/external/syzkaller/vendor/golang.org/x/text/unicode/norm/
Dmaketables.go869 var ftype, mode int
873 ftype, mode = FCanonical, MComposed
875 ftype, mode = FCanonical, MDecomposed
877 ftype, mode = FCompatibility, MComposed
879 ftype, mode = FCompatibility, MDecomposed
894 if got := c.forms[ftype].quickCheck[mode]; got != qr {
897 c.forms[ftype].verified[mode] = true
/external/selinux/python/semanage/
Dseobject.py2400 def __add(self, target, type, ftype="", serange="", seuser="system_u"): argument
2414 (rc, k) = semanage_fcontext_key_create(self.sh, target, file_types[ftype])
2450 semanage_fcontext_set_type(fcontext, file_types[ftype])
2464 …s:%s" % (audit.audit_encode_nv_string("tglob", target, 0), ftype_to_audit[ftype], seuser, "object_…
2466 def add(self, target, type, ftype="", serange="", seuser="system_u"): argument
2468 self.__add(target, type, ftype, serange, seuser)
2471 def __modify(self, target, setype, ftype, serange, seuser): argument
2481 (rc, k) = semanage_fcontext_key_create(self.sh, target, file_types[ftype])
2533 …s:%s" % (audit.audit_encode_nv_string("tglob", target, 0), ftype_to_audit[ftype], seuser, "object_…
2535 def modify(self, target, setype, ftype, serange, seuser): argument
[all …]
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/cfg80211/cfg80211_rx_mlme_mgmt/
Dformat13 print fmt: "netdev:%s(%d), ftype:0x%.2x", REC->name, REC->ifindex, __le16_to_cpup((__le16 *)__get_d…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/cfg80211/cfg80211_tx_mlme_mgmt/
Dformat13 print fmt: "netdev:%s(%d), ftype:0x%.2x", REC->name, REC->ifindex, __le16_to_cpup((__le16 *)__get_d…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/cfg80211/cfg80211_rx_unprot_mlme_mgmt/
Dformat13 print fmt: "netdev:%s(%d), ftype:0x%.2x", REC->name, REC->ifindex, __le16_to_cpup((__le16 *)__get_d…
/external/selinux/python/sepolicy/sepolicy/
D__init__.py622 ftype = trans_file_type_str[rec[1]]
624 ftype = "a"
626 local_files.append((rec[0], ftype))
654 ftype = trans_file_type_str[rec[1]]
656 ftype = "a"
662 fcdict[t] = {"regex": [rec[0]], "ftype": ftype}
/external/u-boot/fs/ext4/
Dext4_common.h57 struct ext2fs_node **fnode, int *ftype);
/external/swiftshader/third_party/subzero/pydir/
Dsz_driver.py19 ).format(ftype=subs[func]['sig'][0],
/external/bcc/src/cc/frontends/p4/compiler/
DebpfTable.py26 ftype = self.field.type
28 ftype.declare(serializer, self.keyFieldName, False)

12