Home
last modified time | relevance | path

Searched refs:dstname (Results 1 – 22 of 22) sorted by relevance

/external/ltp/testcases/kernel/io/ltp-aiodio/
Daiocp.c56 static const char *dstname = NULL; variable
216 if (dstname && dest_open_flag & O_CREAT) in io_error()
217 unlink(dstname); in io_error()
420 if ((dstfd = open(dstname = *argv, dest_open_flag, 0666)) < 0) { in main()
421 perror(dstname); in main()
442 int dst_alignment = dev_block_size_by_path(dstname); in main()
479 dstfd2 = open(dstname, flag); in main()
481 perror(dstname); in main()
/external/python/cpython2/Doc/includes/
Dtzinfo-examples.py118 def __init__(self, hours, reprname, stdname, dstname): argument
122 self.dstname = dstname
129 return self.dstname
/external/tcpdump/
Dprint-ipfc.c68 const char *srcname, *dstname; in ipfc_hdr_print() local
71 dstname = etheraddr_string(ndo, ipfcdst); in ipfc_hdr_print()
88 ND_PRINT((ndo, "%s > %s, length %u: ", srcname, dstname, length)); in ipfc_hdr_print()
Dprint-fddi.c258 const char *srcname, *dstname; in fddi_hdr_print() local
261 dstname = etheraddr_string(ndo, fdst); in fddi_hdr_print()
266 srcname, dstname, in fddi_hdr_print()
Dprint-token.c112 const char *srcname, *dstname; in token_hdr_print() local
115 dstname = etheraddr_string(ndo, fdst); in token_hdr_print()
122 srcname, dstname, in token_hdr_print()
/external/python/cpython3/Doc/includes/
Dtzinfo_examples.py112 def __init__(self, hours, reprname, stdname, dstname): argument
116 self.dstname = dstname
123 return self.dstname
/external/python/cpython3/Lib/ctypes/test/
Dtest_find.py90 dstname = os.path.join(d, 'lib%s.so' % libname)
95 cmd = ['gcc', '-o', dstname, '--shared',
98 self.assertTrue(os.path.exists(dstname))
/external/python/cpython2/Lib/
Dshutil.py197 dstname = os.path.join(dst, name)
201 os.symlink(linkto, dstname)
203 copytree(srcname, dstname, symlinks, ignore)
206 copy2(srcname, dstname)
212 errors.append((srcname, dstname, str(why)))
/external/python/cpython3/Lib/
Dshutil.py327 dstname = os.path.join(dst, name)
335 os.symlink(linkto, dstname)
336 copystat(srcname, dstname, follow_symlinks=not symlinks)
343 copytree(srcname, dstname, symlinks, ignore,
346 copy_function(srcname, dstname)
348 copytree(srcname, dstname, symlinks, ignore, copy_function)
351 copy_function(srcname, dstname)
357 errors.append((srcname, dstname, str(why)))
/external/python/cpython2/Lib/plat-mac/
Dmacostools.py37 dstdir, dstname = os.path.split(dst)
47 dstfsr, dstfss = Res.FSCreateResourceFile(dstdirfsr, unicode(dstname),
/external/python/cpython2/Doc/library/
Dshutil.rst182 (*srcname*, *dstname*, *exception*).
209 dstname = os.path.join(dst, name)
213 os.symlink(linkto, dstname)
215 copytree(srcname, dstname, symlinks, ignore)
217 copy2(srcname, dstname)
220 errors.append((srcname, dstname, str(why)))
/external/icu/icu4c/source/tools/tzcode/
Dlocaltime.c926 const char * dstname; in tzparse() local
935 INITIALIZE(dstname); in tzparse()
967 dstname = ++name; in tzparse()
971 dstlen = name - dstname; in tzparse()
974 dstname = name; in tzparse()
976 dstlen = name - dstname; /* length of DST zone name */ in tzparse()
1161 (void) strncpy(cp, dstname, dstlen); in tzparse()
/external/python/cpython3/Doc/library/
Dshutil.rst371 (*srcname*, *dstname*, *exception*).
389 dstname = os.path.join(dst, name)
393 os.symlink(linkto, dstname)
395 copytree(srcname, dstname, symlinks)
397 copy2(srcname, dstname)
400 errors.append((srcname, dstname, str(why)))
/external/libdrm/intel/
Dintel_decode.c623 i915_get_instruction_dst(uint32_t *data, int i, char *dstname, int do_mask) in i915_get_instruction_dst() argument
661 sprintf(dstname, "R%d%s%s", dst_nr, dstmask, sat); in i915_get_instruction_dst()
666 sprintf(dstname, "oC%s%s", dstmask, sat); in i915_get_instruction_dst()
671 sprintf(dstname, "oD%s%s", dstmask, sat); in i915_get_instruction_dst()
676 sprintf(dstname, "U%d%s%s", dst_nr, dstmask, sat); in i915_get_instruction_dst()
679 sprintf(dstname, "RESERVED"); in i915_get_instruction_dst()
/external/scapy/scapy/
Dfields.py267 def __init__(self, name, dstname): argument
269 self.dstname = dstname
274 dst = ("0.0.0.0" if self.dstname is None
275 else getattr(pkt, self.dstname))
/external/scapy/scapy/layers/
Dinet6.py267 def __init__(self, name, dstname): argument
269 self.dstname = dstname
272 dst=getattr(pkt,self.dstname)
280 dst = ("::" if self.dstname is None else getattr(pkt, self.dstname))
/external/python/cpython2/Lib/test/
Dtest_tarfile.py904 dstname = os.path.abspath(tmpname)
907 self.assertTrue(tar.name == dstname, "archive name must be absolute")
908 tar.add(dstname)
913 tar.add(dstname)
Dtest_datetime.py3071 def __init__(self, hours, reprname, stdname, dstname): argument
3075 self.dstname = dstname
3082 return self.dstname
/external/python/cpython3/Lib/test/
Dtest_tarfile.py1212 dstname = os.path.abspath(tmpname)
1215 self.assertEqual(tar.name, dstname,
1217 tar.add(dstname)
1222 tar.add(dstname)
Ddatetimetester.py4491 def __init__(self, hours, reprname, stdname, dstname): argument
4495 self.dstname = dstname
4502 return self.dstname
4933 def __init__(self, hours, reprname, stdname, dstname): argument
4937 self.dstname = dstname
4944 return self.dstname
/external/mdnsresponder/mDNSCore/
DmDNSEmbeddedAPI.h1677 domainname dstname; member
/external/mdnsresponder/mDNSShared/
Duds_daemon.c4472 …c->prefix, c->dstname.c, &c->loc_inner, &c->loc_outer, &c->loc_outer6, &c->rmt_inner, &c->rmt_oute… in udsserver_info()