| /linux-6.15/fs/nls/ |
| H A D | Kconfig | 27 system (if different) to store data (filenames) on a disk. 43 The Microsoft FAT file system family can deal with filenames in 46 codepage if you want to be able to read/write these filenames on 55 The Microsoft FAT file system family can deal with filenames in 463 Mac partitions correctly. This does apply to the filenames 478 Mac partitions correctly. This does apply to the filenames 492 Mac partitions correctly. This does apply to the filenames 506 Mac partitions correctly. This does apply to the filenames 520 Mac partitions correctly. This does apply to the filenames 534 Mac partitions correctly. This does apply to the filenames [all …]
|
| /linux-6.15/Documentation/filesystems/ |
| H A D | isofs.rst | 20 ASCII. Joliet filenames are stored in Unicode format, but 33 check=relaxed Matches filenames with different cases 34 check=strict Matches only filenames with the exact same case 36 map=off Do not map non-Rock Ridge filenames to lower case 37 map=normal Map non-Rock Ridge filenames to lower case
|
| H A D | fscrypt.rst | 30 However, except for filenames, fscrypt does not encrypt filesystem 57 protects the confidentiality of file contents and filenames in the 90 plaintext file contents or filenames from other users on the same 178 greater of the security strength of the contents and filenames 322 plaintext filenames, the KDF is also used to derive a 128-bit 340 - AES-256-XTS for contents and AES-256-CBC-CTS for filenames 341 - AES-256-XTS for contents and AES-256-HCTR2 for filenames 342 - Adiantum for both contents and filenames 344 - SM4-XTS for contents and SM4-CBC-CTS for filenames 410 API, but the filenames mode still does. [all …]
|
| H A D | qnx6.rst | 88 its longname. (filenames longer than 27 characters) 116 One special case are long filenames or subdirectory names. 140 Long filenames 143 Long filenames are stored in a separate addressing tree. The staring point
|
| H A D | hfsplus.rst | 9 blocks, 255-character unicode filenames, and file sizes of 2^63 bytes.
|
| H A D | vfat.rst | 64 Unicode characters. Long filenames are stored on disk 85 restore filenames that are created with any Unicode 300 Windows 95 but it is used by Windows NT. The case of filenames is not
|
| H A D | ext2.rst | 191 the filenames in the directory; a pending enhancement uses hashing of the 192 filenames to allow lookup without the need to scan the entire directory. 348 have to be 8 character filenames, even then we are fairly close to 349 running out of unique filenames.
|
| H A D | hpfs.rst | 63 As in OS/2, filenames are case insensitive. However, shell thinks that names 232 0.93 Fixed bug that locked up the machine when there were too many filenames 241 using 0xff in filenames.
|
| /linux-6.15/tools/testing/selftests/bpf/ |
| H A D | veristat.c | 169 char **filenames; member 697 tmp = realloc(env.filenames, (env.filename_cnt + 1) * sizeof(*env.filenames)); in append_file() 700 env.filenames = tmp; in append_file() 702 if (!env.filenames[env.filename_cnt]) in append_file() 2483 env.filenames[0], env.filenames[1], in handle_comparison_mode() 2490 env.filenames[0], env.filenames[1], in handle_comparison_mode() 2524 i, env.filenames[0]); in handle_comparison_mode() 2529 j, env.filenames[1]); in handle_comparison_mode() 2701 err = process_obj(env.filenames[i]); in handle_verif_mode() 2786 free(env.filenames[i]); in main() [all …]
|
| /linux-6.15/tools/testing/selftests/devices/probe/ |
| H A D | test_discoverable_devices.py | 295 filenames = [] 301 filenames.extend(line.split("\0")) 312 filenames = [vendor + "," + product] 314 return filenames
|
| /linux-6.15/tools/testing/selftests/powerpc/ptrace/ |
| H A D | core-pkey.c | 229 char *filenames, *filename[3]; in parent() local 262 filename[0] = filenames = malloc(PATH_MAX); in parent() 263 if (!filenames) { in parent() 315 free(filenames); in parent()
|
| /linux-6.15/scripts/clang-tools/ |
| H A D | gen_compile_commands.py | 88 for dirpath, dirnames, filenames in os.walk(directory, topdown=True): 94 for filename in filenames:
|
| /linux-6.15/fs/isofs/ |
| H A D | Kconfig | 9 long Unix filenames and symbolic links are also supported by this 25 which allows for long filenames in unicode format (unicode is the
|
| /linux-6.15/fs/exfat/ |
| H A D | Kconfig | 22 filenames and the UTF-16 character encoding that the exFAT
|
| /linux-6.15/Documentation/devicetree/bindings/net/wireless/ |
| H A D | brcm,bcm4329-fmac.yaml | 111 construct firmware and NVRAM configuration filenames, allowing for 120 on Apple platforms. This is use to build firmware filenames, to allow
|
| /linux-6.15/scripts/dtc/ |
| H A D | dtc-lexer.l | 80 /* Don't allow nuls in filenames */
|
| /linux-6.15/Documentation/kbuild/ |
| H A D | reproducible-builds.rst | 49 Absolute filenames 53 absolute filenames for the source files. This must be overridden by
|
| /linux-6.15/fs/fat/ |
| H A D | Kconfig | 55 support" below), or you will not be able to see the long filenames 68 long filenames. That includes non-compressed FAT-based file systems
|
| /linux-6.15/tools/testing/selftests/tc-testing/ |
| H A D | tdc.py | 49 for dirpath, dirnames, filenames in os.walk(plugindir): 50 for fn in filenames: 881 for root, dirnames, filenames in os.walk(testdir): 882 for filename in fnmatch.filter(filenames, '*.json'):
|
| /linux-6.15/Documentation/devicetree/bindings/net/bluetooth/ |
| H A D | brcm,bcm4377-bluetooth.yaml | 34 firmware and calibration data filenames.
|
| /linux-6.15/drivers/base/firmware_loader/ |
| H A D | Kconfig | 30 bool "Log filenames and checksums for loaded firmware" 36 Select this option to use dynamic debug to log firmware filenames and
|
| /linux-6.15/tools/perf/ |
| H A D | builtin-record.c | 91 char **filenames; member 1886 if (rec->switch_output.filenames[n]) { in record__switch_output() 1887 remove(rec->switch_output.filenames[n]); in record__switch_output() 1888 zfree(&rec->switch_output.filenames[n]); in record__switch_output() 1890 rec->switch_output.filenames[n] = new_filename; in record__switch_output() 4108 rec->switch_output.filenames = calloc(rec->switch_output.num_files, in cmd_record() 4110 if (!rec->switch_output.filenames) { in cmd_record()
|
| /linux-6.15/Documentation/filesystems/caching/ |
| H A D | cachefiles.rst | 232 if they do. Their filenames all begin "D..." or "E...". If represented as a 236 Special objects are similar to data objects, except their filenames begin 269 object filenames indicate the encoding:
|
| /linux-6.15/Documentation/admin-guide/cifs/ |
| H A D | usage.rst | 259 Valid filenames differ between Windows and Linux. Windows typically restricts 260 filenames which contain certain reserved characters (e.g.the character : 262 Linux allows a slightly wider set of valid characters in filenames. Windows 265 filenames (ie those which contain valid Linux characters, which normally 565 characters forbidden in typical CIFS filenames, without
|
| /linux-6.15/Documentation/admin-guide/ |
| H A D | rtc.rst | 28 different filenames of course), but the hardware may not offer the
|