Searched refs:newName (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/sys/fs/udf/
H A Dosta.c317 unicode_t *newName, /* (Output)Translated name. Must be of length
369 newName[newIndex++] = current;
428 newName[newIndex++] = CRC_MARK; /* Add mark for CRC. */
433 newName[newIndex++] = hexChar[(valueCRC & 0xf000) >> 12];
434 newName[newIndex++] = hexChar[(valueCRC & 0x0f00) >> 8];
435 newName[newIndex++] = hexChar[(valueCRC & 0x00f0) >> 4];
436 newName[newIndex++] = hexChar[(valueCRC & 0x000f)];
440 newName[newIndex++] = PERIOD;
442 newName[newIndex++] = ext[index];
316 UDFTransName( unicode_t *newName, unicode_t *udfName, int udfLen) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp541 StringRef newName = CI->first; local
542 if (newName != lastName) {
546 lastName = newName;
/freebsd-10.0-release/usr.bin/make/
H A Dparse.c2089 char *newName; local
2156 newName = estrdup(file);
2158 newName = str_concat(Fname, file, STR_ADDSLASH);
2159 fullname = Path_FindFile(newName, &parseIncPath);
2161 fullname = Path_FindFile(newName,
2164 free(newName);
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DPathV1.h562 /// This method renames the file referenced by \p this as \p newName. The
564 /// \p newName does not need to exist.
567 bool renamePathOnDisk(const Path& newName, std::string* ErrMsg);
/freebsd-10.0-release/contrib/bmake/
H A Dparse.c2086 char *newName; local
2118 newName = str_concat(incdir, file + i, STR_ADDSLASH);
2119 fullname = Dir_FindFile(newName, parseIncPath);
2121 fullname = Dir_FindFile(newName, dirSearchPath);
2122 free(newName);

Completed in 131 milliseconds