/freebsd/contrib/libarchive/libarchive/test/ |
H A D | test_read_format_xar.c | 28 #define UID 1001 macro 89 assertEqualInt(archive_entry_uid(ae), UID); in verify0() 112 assertEqualInt(archive_entry_uid(ae), UID); in verify1() 178 assertEqualInt(archive_entry_uid(ae), UID); in verify2() 227 assertEqualInt(archive_entry_uid(ae), UID); in verify3() 277 assertEqualInt(archive_entry_uid(ae), UID); in verify4() 326 assertEqualInt(archive_entry_uid(ae), UID); in verify5() 368 assertEqualInt(archive_entry_uid(ae), UID); in verify6() 430 assertEqualInt(archive_entry_uid(ae), UID); in verify7()
|
/freebsd/contrib/bmake/mk/ |
H A D | manifest.mk | 29 # UID GID MODE FLAGS 49 UID.dirs ?= 0 54 UID.files ?= 0 66 @(${${.TARGET}.DIRS:O:u:@d@echo '$d type=dir uid=${UID:${M_DIR_ATTR}} gid=${GID:${M_DIR_ATTR}} mode=${MODE:${M_DIR_ATTR}} ${FLAGS:${M_DIR_ATTR}}';@} \ 67 ${${.TARGET}.DIRS:O:u:@d@${${.TARGET}.SRCS.$d:O:u:@f@echo '${s::=${STORE.$d/${f:T}:U$d/${f:T}}}$s contents="$f" type=file uid=${UID:${M_FILE_ATTR}} gid=${GID:${M_FILE_ATTR}} mode=${MODE:${M_FILE_ATTR}} ${FLAGS:${M_FILE_ATTR}}';@}@} \
|
/freebsd/stand/efi/libefi/ |
H A D | devpath.c | 194 acpi->UID, tail) < 0) in efi_acpi_dev_path() 199 acpi->UID, tail) < 0) in efi_acpi_dev_path() 204 acpi->UID, tail) < 0) in efi_acpi_dev_path() 209 acpi->UID, tail) < 0) in efi_acpi_dev_path() 214 acpi->UID, tail) < 0) in efi_acpi_dev_path() 219 acpi->UID, tail) < 0) in efi_acpi_dev_path() 225 acpi->UID, tail) < 0) in efi_acpi_dev_path() 231 acpi->HID, acpi->UID, tail) < 0) in efi_acpi_dev_path()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningFilesystem.cpp | 106 llvm::sys::fs::UniqueID UID) const { in getShardForUID() 107 auto Hash = llvm::hash_combine(UID.getDevice(), UID.getFile()); in getShardForUID() 122 llvm::sys::fs::UniqueID UID) const { in findEntryByUID() 124 auto It = EntriesByUID.find(UID); in findEntryByUID() 147 llvm::sys::fs::UniqueID UID, llvm::vfs::Status Stat, in getOrEmplaceEntryForUID() argument 150 auto [It, Inserted] = EntriesByUID.insert({UID, nullptr}); in getOrEmplaceEntryForUID()
|
/freebsd/crypto/heimdal/lib/gssapi/krb5/ |
H A D | gkrb5_err.et | 12 error_code G_BAD_STRING_UID, "STRING-UID-NAME contains nondigits" 13 error_code G_NOUSER, "UID does not resolve to username"
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | ArchiveWriter.cpp | 115 M.UID = UIDOrErr.get(); in getOldMember() 160 M.UID = Status.getUser(); in getFile() 217 unsigned UID, unsigned GID, unsigned Perms, uint64_t Size) { in printRestOfMemberHeader() argument 222 printWithSpacePadding(Out, UID % 1000000, 6); in printRestOfMemberHeader() 233 unsigned UID, unsigned GID, unsigned Perms, in printGNUSmallMemberHeader() argument 236 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size); in printGNUSmallMemberHeader() 242 unsigned UID, unsigned GID, unsigned Perms, uint64_t Size) { in printBSDMemberHeader() argument 248 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, in printBSDMemberHeader() 258 unsigned UID, unsigned GID, unsigned Perms, in printBigArchiveMemberHeader() argument 268 printWithSpacePadding(Out, UID % 1000000000000, 12); // UID in printBigArchiveMemberHeader() [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/nuvoton/ |
H A D | nuvoton-wpcm450-supermicro-x9sci-ln4f.dts | 38 label = "UID button"; 50 label = "UID";
|
/freebsd/lib/libefivar/ |
H A D | efivar-dp-format.c | 427 UefiDevicePathLibCatPrint (Str, "PciRoot(0x%x)", Acpi->UID); in DevPathToTextAcpi() 431 UefiDevicePathLibCatPrint (Str, "PcieRoot(0x%x)", Acpi->UID); in DevPathToTextAcpi() 435 UefiDevicePathLibCatPrint (Str, "Floppy(0x%x)", Acpi->UID); in DevPathToTextAcpi() 439 UefiDevicePathLibCatPrint (Str, "Keyboard(0x%x)", Acpi->UID); in DevPathToTextAcpi() 443 UefiDevicePathLibCatPrint (Str, "Serial(0x%x)", Acpi->UID); in DevPathToTextAcpi() 447 UefiDevicePathLibCatPrint (Str, "ParallelPort(0x%x)", Acpi->UID); in DevPathToTextAcpi() 451 … UefiDevicePathLibCatPrint (Str, "Acpi(PNP%04x,0x%x)", EISA_ID_TO_NUM (Acpi->HID), Acpi->UID); in DevPathToTextAcpi() 455 UefiDevicePathLibCatPrint (Str, "Acpi(0x%08x,0x%x)", Acpi->HID, Acpi->UID); in DevPathToTextAcpi() 517 UefiDevicePathLibCatPrint (Str, "PciRoot(0x%x)", AcpiEx->UID); in DevPathToTextAcpiEx() 527 UefiDevicePathLibCatPrint (Str, "PcieRoot(0x%x)", AcpiEx->UID); in DevPathToTextAcpiEx() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/ |
H A D | DependencyScanningFilesystem.h | 183 findEntryByUID(llvm::sys::fs::UniqueID UID) const; 196 getOrEmplaceEntryForUID(llvm::sys::fs::UniqueID UID, llvm::vfs::Status Stat, 221 CacheShard &getShardForUID(llvm::sys::fs::UniqueID UID) const;
|
/freebsd/contrib/dialog/samples/ |
H A D | inputmenu | 53 UID) uid="$item" ;;
|
H A D | inputmenu-stdout | 51 UID) uid="$item" ;;
|
H A D | inputmenu1 | 67 UID)
|
H A D | inputmenu4 | 68 UID)
|
H A D | inputmenu3 | 84 UID:)
|
H A D | inputmenu2 | 75 UID:)
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | cmdline.mk | 5 TMPBASE?= ${TMPDIR:U/tmp/uid${.MAKE.UID}}
|
/freebsd/sbin/dhclient/ |
H A D | dhctoken.h | 67 #define UID 269 macro
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | FileEntry.h | 312 unsigned UID = 0; // A unique (small) ID for the file. 326 unsigned getUID() const { return UID; }
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | ArchiveWriter.h | 24 unsigned UID = 0, GID = 0, Perms = 0644; member
|
/freebsd/crypto/openssh/contrib/cygwin/ |
H A D | ssh-user-config | 78 pwdhome=$(getent passwd $UID | awk -F: '{ print $6; }')
|
/freebsd/stand/efi/include/ |
H A D | efidevp.h | 132 UINT32 UID; member 139 UINT32 UID; member
|
/freebsd/usr.sbin/ypldap/ |
H A D | parse.y | 103 %token USER GROUP TO EXPIRE HOME SHELL GECOS UID GID INTERVAL 172 | UID { $$ = 2; } 400 { "uid", UID }, in lookup()
|
/freebsd/cddl/usr.sbin/dwatch/libexec/ |
H A D | systop | 43 # printed. By default, `UID.GID CMD[PID]: ' of the process is printed.
|
/freebsd/cddl/usr.sbin/dwatch/examples/ |
H A D | profile_template | 50 # printed. By default, `UID.GID CMD[PID]: ' of the process is printed.
|
/freebsd/usr.sbin/bsdconfig/usermgmt/include/ |
H A D | messages.subr | 115 msg_user_id="UID" 116 msg_user_id_leave_empty_for_default="UID (Leave empty for default)"
|