Home
last modified time | relevance | path

Searched refs:bmake_strdup (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/bmake/
H A Dmake_malloc.h32 char *bmake_strdup(const char *) MAKE_ATTR_USE;
38 #define bmake_strdup(s) estrdup(s) macro
H A Ddir.c278 dir->name = bmake_strdup(name); in CachedDir_New()
680 ? bmake_strdup(base) in DirMatchFiles()
980 ? bmake_strdup(name) in DirLookupSubdir()
1020 return bmake_strdup(""); /* to terminate the search */ in DirLookupAbs()
1026 return bmake_strdup(name); in DirLookupAbs()
1041 return bmake_strdup(name); in DirFindDot()
1255 return bmake_strdup(name); in FindFile()
1305 dirbase = bmake_strdup(here); in Dir_FindHereOrAbove()
1365 gn->path = bmake_strdup(fullName); in ResolveMovedDepends()
1394 fullName = bmake_strdup(gn->name); in ResolveFullName()
H A Dmain.c165 return bmake_strdup(flags); in explode()
495 tracefile = bmake_strdup(argvalue); in MainParseOption()
502 Lst_Append(&opts.variables, bmake_strdup(argvalue)); in MainParseOption()
530 Lst_Append(&opts.makefiles, bmake_strdup(argvalue)); in MainParseOption()
667 Lst_Append(&opts.create, bmake_strdup(argv[1])); in MainParseArgs()
1174 syspath = bmake_strdup(syspath); in InitDefSysIncPath()
1434 progname = bmake_strdup(pn); in main_Init()
1797 return bmake_strdup(""); in Cmd_Exec()
1814 return bmake_strdup(""); in Cmd_Exec()
2046 HashTable_Set(&cached_realpaths, pathname, bmake_strdup(r
[all...]
H A Dmake_malloc.c58 bmake_strdup(const char *str) in bmake_strdup() function
H A Dsuff.c447 suff->name = bmake_strdup(name); in Suffix_New()
1016 CandidateList_Add(list, bmake_strdup(cand->prefix), in CandidateList_AddCandidatesFor()
1190 ret = Candidate_New(bmake_strdup(sgn->name), targ->prefix, suff, targ, in FindCmds()
1665 targ = Candidate_New(bmake_strdup(gn->name), pref, suff, NULL, in FindDepsRegularKnown()
1686 targ = Candidate_New(bmake_strdup(gn->name), bmake_strdup(sopref), in FindDepsRegularUnknown()
H A Dparse.c792 Lst_Append(&opts.create, bmake_strdup(src)); in ApplyDependencySourceMain()
1177 incdir = bmake_strdup(CurFile()->name.str); in FindInDirOfIncludingFile()
1255 fullname = file[0] == '/' ? bmake_strdup(file) : NULL; in IncludeFile()
2168 curFile->name = FStr_InitOwn(bmake_strdup(name)); in Parse_PushInput()
2708 char *cmd = bmake_strdup(p); in ParseLine_ShellCommand()
H A Dtarg.c186 gn->name = bmake_strdup(name); in GNode_New()
H A Djob.c2108 shellPath = bmake_strdup(shellName); in Job_CatchOutput()
2114 shellPath = bmake_strdup(DEFSHELL_PATH); in Job_CatchOutput()
2432 shellPath = bmake_strdup(path); in Job_ParseShell()
H A Dmeta.c283 tp = bmake_strdup(tname); in meta_name()
1040 Lst_Append(list, bmake_strdup(str)); in append_if_new()
H A Dvar.c1914 ? bmake_strdup(prev_tz_env) : NULL; in FormatTime()
1926 return bmake_strdup(buf); in FormatTime()
2519 Expr_SetValueOwn(expr, bmake_strdup(expr->name)); in ApplyModifier_Literal()
2623 path = bmake_strdup(gn->path); in ApplyModifier_Path()
2629 path = bmake_strdup(expr->name); in ApplyModifier_Path()
H A Darch.c483 ar->name = bmake_strdup(archive); in ArchStatMember()
H A DChangeLog1099 o make_malloc.c: remove duplicate code from bmake_strdup