Searched refs:binname (Results 1 – 7 of 7) sorted by relevance
| /src/crypto/openssl/test/ |
| H A D | ca_internals_test.c | 15 #define binname "ca_internals_test" macro 32 TEST_error("Usage: %s: do_updatedb dbfile testdate need64bit\n", binname); in test_do_updatedb() 83 TEST_error("%s: no command specified for testing\n", binname); in setup_tests() 90 TEST_error("%s: command '%s' is not supported for testing\n", binname, command); in setup_tests()
|
| /src/contrib/ncurses/misc/ |
| H A D | ncu2openbsd | 890 my $binname = shift; 896 my @sources = ("$binname.c"); 906 $use_dump_entry = 1 if ( $binname eq "infocmp" or $binname eq "tic" ); 907 $use_termsort = 1 if ( $use_dump_entry or $binname eq "tput" ); 910 $use_transform = 1 if ( $binname =~ /^(tic|tput|tset)/ ); 913 $use_tparm_type = 1 if ( $binname =~ /^(tic|tput)$/ ); 927 if ( $binname eq "tic" ) { 931 elsif ( $binname eq "tabs" ) { 934 elsif ( $binname eq "tput" ) { 940 elsif ( $binname eq "tset" ) { [all …]
|
| /src/crypto/openssl/Configurations/platform/ |
| H A D | BASE.pm | 25 sub binname { return $_[1] } # Name of executable binary subroutine 35 sub bin { return $_[0]->binname($_[1]) . $_[0]->binext() }
|
| /src/crypto/openssl/Configurations/platform/Windows/ |
| H A D | MSVC.pm | 41 return platform::BASE::__concat($_[0]->binname($_[1]), $_[0]->pdbext());
|
| /src/crypto/openssl/Configurations/ |
| H A D | descrip.mms.tmpl | 1370 my $binname = platform->binname($args{bin}); 1438 @ OPEN/WRITE/SHARE=READ OPT_FILE $binname.OPT 1442 TYPE $binname.OPT ! For debugging 1443 - pipe SPAWN/WAIT/NOLOG/OUT=$binname.LINKLOG - 1444 LINK ${bin_ldflags}/EXEC=\$\@ $binname.OPT/OPT \$(BIN_EX_LIBS) ; - 1448 pipe SEARCH $binname.LINKLOG "%","-"/MATCH=AND | - 1459 -@ IF .NOT. link_severity THEN TYPE $binname.LINKLOG 1460 -@ DELETE $binname.LINKLOG;* 1462 - PURGE $bin,$binname.OPT
|
| /src/sys/kern/ |
| H A D | kern_proc.c | 2273 proc_get_binpath(struct proc *p, char *binname, char **retbuf, in proc_get_binpath() argument 2296 strlcpy(binname, p->p_binname, MAXPATHLEN); in proc_get_binpath() 2301 if (dvp != NULL && binname[0] != '\0') { in proc_get_binpath() 2303 if (vn_fullpath_hardlink(vp, dvp, binname, strlen(binname), in proc_get_binpath() 2341 char *retbuf, *freebuf, *binname; in sysctl_kern_proc_pathname() local 2346 binname = malloc(MAXPATHLEN, M_TEMP, M_WAITOK); in sysctl_kern_proc_pathname() 2347 binname[0] = '\0'; in sysctl_kern_proc_pathname() 2357 error = proc_get_binpath(p, binname, &retbuf, &freebuf); in sysctl_kern_proc_pathname() 2358 free(binname, M_TEMP); in sysctl_kern_proc_pathname()
|
| /src/sys/sys/ |
| H A D | proc.h | 1189 int proc_get_binpath(struct proc *p, char *binname, char **fullpath,
|