/src/lib/libc/posix1e/ |
acl_branding.c | 45 * of what "brand" ACL is: NFSv4, POSIX.1e or unknown. It happens 48 * ACL, if its brand is unknown it gets branded as NFSv4 if any of the 66 * Return brand of an ACL. 83 * Return 1, iff branding ACL as "brand" is ok. 86 _acl_brand_may_be(const acl_t acl, int brand) 92 if (_acl_brand(acl) == brand) 99 _entry_brand_may_be(const acl_entry_t entry, int brand) 102 return (_acl_brand_may_be(entry2acl(entry), brand)); 106 * Brand ACL as "brand" [all...] |
acl_support.h | 46 int _acl_brand_may_be(const acl_t acl, int brand); 47 int _entry_brand_may_be(const acl_entry_t entry, int brand); 48 void _acl_brand_as(acl_t acl, int brand); 49 void _entry_brand_as(const acl_entry_t entry, int brand);
|
/src/bin/setfacl/ |
util.c | 65 brand_name(int brand) 67 switch (brand) {
|
setfacl.h | 57 const char *brand_name(int brand);
|
/src/sys/arch/x86/x86/ |
identcpu.c | 860 uint32_t brand[12]; local in function:cpu_probe 946 x86_cpuid(0x80000002, brand); 947 x86_cpuid(0x80000003, brand + 4); 948 x86_cpuid(0x80000004, brand + 8); 949 /* Skip leading spaces on brand */ 951 if (((char *) brand)[i] != ' ') 954 memcpy(cpu_brand_string, ((char *) brand) + i, 48 - i);
|
/src/usr.sbin/cpuctl/arch/ |
i386.c | 119 * Map Brand ID from cpuid instruction to brand name. 120 * Source: Table 3-24, Mapping of Brand Indices; and Intel 64 and IA-32 121 * Processor Brand Strings, Chapter 3 in "Intel (R) 64 and IA-32 152 * AMD processors don't have Brand IDs, so we need these names for probe. 172 /* Brand/Model name functions */ 804 * This is all rather pointless, these are cross 'brand' since the raw 1521 uint32_t brand[12]; local in function:cpu_probe_base_features 1565 * - Save brand string. 1568 x86_cpuid(0x80000002, brand); 1969 const char *name = "", *modifier, *vendorname, *brand = ""; local in function:identifycpu [all...] |