Home
last modified time | relevance | path

Searched refs:from_name (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/usr.bin/xinstall/
H A Dxinstall.c465 do_link(char *from_name, char *to_name) in do_link() argument
475 ret = link(from_name, tmpl); in do_link()
479 * file may still exist when from_name and to_name point in do_link()
485 ret = link(from_name, to_name); in do_link()
488 (void)printf("install: link %s -> %s\n", from_name, to_name); in do_link()
498 do_symlink(char *from_name, char *to_name) in do_symlink() argument
508 if (symlink(from_name, tmpl) == -1) in do_symlink()
509 err(EXIT_FAILURE, "symlink %s -> %s", from_name, tmpl); in do_symlink()
516 if (symlink(from_name, to_name) == -1) in do_symlink()
517 err(EXIT_FAILURE, "symlink %s -> %s", from_name, to_nam in do_symlink()
528 makelink(char * from_name,char * to_name) makelink() argument
666 install(char * from_name,char * to_name,u_int flags) install() argument
860 copy(int from_fd,char * from_name,int to_fd,char * to_name,off_t size) copy() argument
[all...]
/netbsd-src/crypto/external/bsd/heimdal/dist/kuser/
H A Dcopy_cred_cache.c89 const char *from_name, *to_name; in copy_cred_cache() local
125 from_name = krb5_cc_default_name(heimtools_context); in copy_cred_cache()
128 from_name = argv[0]; in copy_cred_cache()
132 ret = krb5_cc_resolve(heimtools_context, from_name, &from_ccache); in copy_cred_cache()
134 krb5_err(heimtools_context, 1, ret, "%s", from_name); in copy_cred_cache()
/netbsd-src/external/bsd/libevent/dist/test/
H A Dregress_rpc.c287 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_basic_message()
477 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_basic_client()
552 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_basic_queued_client()
657 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_basic_client_with_pause()
707 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_client_timeout()
752 EVTAG_ASSIGN(msg, from_name, "niels"); in rpc_test()
811 if (!EVTAG_HAS(msg2, from_name) || in rpc_test()
H A Dregress.rpc4 string /* sender */ from_name = 1; /* be verbose */
/netbsd-src/external/apache2/llvm/dist/llvm/utils/
H A Dunicode-case-fold.py43 from_name = m.group(3)
47 yield from_char, to_char, from_name
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
H A Dtest_location.py59 file = File.from_name(tu, 't.c')
95 file = File.from_name(tu, 't.c')
H A Dtest_file.py15 file = File.from_name(tu, "t.c")
/netbsd-src/external/bsd/ntp/dist/sntp/libevent/test/
H A Dregress.rpc4 string /* sender */ from_name = 1; /* be verbose */
/netbsd-src/sys/fs/sysvbfs/
H A Dbfs.c337 bfs_file_rename(struct bfs *bfs, const char *from_name, const char *to_name) in bfs_file_rename() argument
342 if (!bfs_dirent_lookup_by_name(bfs, from_name, &dirent)) { in bfs_file_rename()
352 from_name, to_name, err); in bfs_file_rename()
H A Dsysvbfs_vnops.c563 const char *from_name = ap->a_fcnp->cn_nameptr; in sysvbfs_rename() local
567 DPRINTF("%s: %s->%s\n", __func__, from_name, to_name); in sysvbfs_rename()
596 error = bfs_file_rename(bfs, from_name, to_name); in sysvbfs_rename()
/netbsd-src/external/bsd/nsd/dist/
H A Dquery.c809 query_synthesize_cname(struct query* q, struct answer* answer, const dname_type* from_name, in query_synthesize_cname() argument
823 assert(q && answer && from_name && to_name && src && to_closest_encloser); in query_synthesize_cname()
831 dname_compare(domain_dname(answer->rrsets[j]->rrs[0].owner), from_name) == 0 && in query_synthesize_cname()
840 for(i=0; i < from_name->label_count - domain_dname(src)->label_count; i++) in query_synthesize_cname()
853 from_name, domain_dname(src)->label_count + i + 1); in query_synthesize_cname()
/netbsd-src/sys/fs/v7fs/
H A Dv7fs_vnops.c791 const char *from_name = a->a_fcnp->cn_nameptr; in v7fs_rename() local
797 DPRINTF("%.*s->%.*s %p %p\n", (int)from_len, from_name, (int)to_len, in v7fs_rename()
807 error = v7fs_file_rename(fs, &parent_from->inode, from_name, from_len, in v7fs_rename()
/netbsd-src/external/apache2/llvm/dist/clang/bindings/python/clang/
H A Dcindex.py2910 return File.from_name(self, filename)
3096 def from_name(translation_unit, file_name): member in File