/aosp_15_r20/external/e2fsprogs/tests/f_h_reindex/ |
H A D | expect.1 | 4 Pass 2: Checking directory structure 5 Problem in HTREE directory inode 16001: block #1 has bad max hash 6 Problem in HTREE directory inode 16001: block #2 has bad min hash 7 Problem in HTREE directory inode 16001: block #2 has bad max hash 8 Problem in HTREE directory inode 16001: block #3 has bad min hash 9 Problem in HTREE directory inode 16001: block #3 has bad max hash 10 Problem in HTREE directory inode 16001: block #4 has bad min hash 11 Problem in HTREE directory inode 16001: block #4 has bad max hash 12 Problem in HTREE directory inode 16001: block #5 has bad min hash 13 Problem in HTREE directory inode 16001: block #5 has bad max hash [all …]
|
/aosp_15_r20/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactDirectoryManagerTest.java | 39 import android.provider.ContactsContract.Directory; 92 new String[] { Directory.ACCOUNT_NAME, Directory.ACCOUNT_TYPE, in createResponseCursor() 93 Directory.DISPLAY_NAME, Directory.TYPE_RESOURCE_ID, in createResponseCursor() 94 Directory.EXPORT_SUPPORT, Directory.SHORTCUT_SUPPORT, in createResponseCursor() 95 Directory.PHOTO_SUPPORT }); in createResponseCursor() 147 // directory table, and if it's wrong, the tests would get confused. in getContextPackageName() 191 Directory.EXPORT_SUPPORT_NONE, Directory.SHORTCUT_SUPPORT_NONE, in testScanAllProviders() 192 Directory.PHOTO_SUPPORT_FULL_SIZE_ONLY); in testScanAllProviders() 194 Directory.EXPORT_SUPPORT_ANY_ACCOUNT, Directory.SHORTCUT_SUPPORT_DATA_ITEMS_ONLY, in testScanAllProviders() 195 Directory.PHOTO_SUPPORT_THUMBNAIL_ONLY); in testScanAllProviders() [all …]
|
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
D | admin.directoryv1.json | 11 "https://www.googleapis.com/auth/admin.directory.customer": { 14 "https://www.googleapis.com/auth/admin.directory.customer.readonly": { 17 "https://www.googleapis.com/auth/admin.directory.device.chromeos": { 20 "https://www.googleapis.com/auth/admin.directory.device.chromeos.readonly": { 23 "https://www.googleapis.com/auth/admin.directory.device.mobile": { 26 "https://www.googleapis.com/auth/admin.directory.device.mobile.action": { 29 "https://www.googleapis.com/auth/admin.directory.device.mobile.readonly": { 32 "https://www.googleapis.com/auth/admin.directory.domain": { 35 "https://www.googleapis.com/auth/admin.directory.domain.readonly": { 38 "https://www.googleapis.com/auth/admin.directory.group": { [all …]
|
D | admin.directory_v1.json | 11 "https://www.googleapis.com/auth/admin.directory.customer": { 14 "https://www.googleapis.com/auth/admin.directory.customer.readonly": { 17 "https://www.googleapis.com/auth/admin.directory.device.chromeos": { 20 "https://www.googleapis.com/auth/admin.directory.device.chromeos.readonly": { 23 "https://www.googleapis.com/auth/admin.directory.device.mobile": { 26 "https://www.googleapis.com/auth/admin.directory.device.mobile.action": { 29 "https://www.googleapis.com/auth/admin.directory.device.mobile.readonly": { 32 "https://www.googleapis.com/auth/admin.directory.domain": { 35 "https://www.googleapis.com/auth/admin.directory.domain.readonly": { 38 "https://www.googleapis.com/auth/admin.directory.group": { [all …]
|
/aosp_15_r20/external/bazelbuild-rules_python/tests/pypi/whl_installer/ |
H A D | namespace_pkgs_test.py | 54 directory = TempDir() 55 directory.add_file("foo/bar/biz.py") 56 directory.add_file("foo/bee/boo.py") 57 directory.add_file("foo/buu/__init__.py") 58 directory.add_file("foo/buu/bii.py") 60 os.chdir(directory.root()) 71 directory.remove() 74 directory = TempDir() 75 directory.add_file("foo/bar/biz.py") 76 directory.add_file("foo/bee/boo.py") [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/directory/src/main/resources/codegen-resources/ |
H A D | service-2.json | 8 "serviceAbbreviation":"Directory Service", 9 "serviceFullName":"AWS Directory Service", 10 "serviceId":"Directory Service", 31 …"documentation":"<p>Accepts a directory sharing request that was sent from the directory owner acc… 50 …ryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html\">Directory Service API Perm… 72 …entation":"<p>Adds two domain controllers in the specified Region for the specified directory.</p>" 89 …tion":"<p>Adds or overwrites one or more tags for the specified directory. Each directory can have… 104 …"documentation":"<p>Cancels an in-progress schema extension to a Microsoft AD directory. Once a sc… 120 …directory.</p> <p>Before you call <code>ConnectDirectory</code>, ensure that all of the required p… 137 …ates an alias for a directory and assigns the alias to the directory. The alias is used to constru… [all …]
|
/aosp_15_r20/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactDirectoryManager.java | 36 import android.provider.ContactsContract.Directory; 55 * Manages the contents of the {@link Directory} table. 72 int exportSupport = Directory.EXPORT_SUPPORT_NONE; 73 int shortcutSupport = Directory.SHORTCUT_SUPPORT_NONE; 74 int photoSupport = Directory.PHOTO_SUPPORT_NONE; 88 Directory.ACCOUNT_NAME, 89 Directory.ACCOUNT_TYPE, 90 Directory.DISPLAY_NAME, 91 Directory.TYPE_RESOURCE_ID, 92 Directory.EXPORT_SUPPORT, [all …]
|
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/ |
H A D | FileUtils.java | 95 * <li>make a directory including parent directories 325 * Cleans a directory without deleting it. 327 * @param directory directory to clean 329 * @throws IllegalArgumentException if directory does not exist or is not a directory. 333 public static void cleanDirectory(final File directory) throws IOException { in cleanDirectory() argument 334 IOConsumer.forAll(FileUtils::forceDelete, listFiles(directory, null)); in cleanDirectory() 338 * Cleans a directory without deleting it. 340 * @param directory directory to clean, must not be {@code null} 342 * @throws IllegalArgumentException if directory does not exist or is not a directory. 346 private static void cleanDirectoryOnExit(final File directory) throws IOException { in cleanDirectoryOnExit() argument [all …]
|
H A D | DirectoryWalker.java | 32 …* Abstract class that walks through a directory hierarchy and provides subclasses with convenient … 66 * protected boolean handleDirectory(File directory, int depth, Collection results) { 68 * if (".svn".equals(directory.getName())) { 69 * directory.delete(); 118 * // Combine the directory and file filters using an OR condition 225 …* protected boolean handleDirectory(File directory, int depth, Collection results) throws IOEx… 226 * // cancel if hidden directory 227 * if (directory.isHidden()) { 321 * The limit on the directory depth to walk. 351 * Constructs an instance with a directory and a file filter and an optional [all …]
|
/aosp_15_r20/external/libcups/cups/ |
H A D | dir.c | 2 * Directory routines for CUPS. 4 * This set of APIs abstracts enumeration of directory entries. 32 struct _cups_dir_s /**** Directory data structure ****/ 34 char directory[1024]; /* Directory filename */ member 35 HANDLE dir; /* Directory handle */ 36 cups_dentry_t entry; /* Directory entry */ 62 * 'cupsDirClose()' - Close a directory. 68 cupsDirClose(cups_dir_t *dp) /* I - Directory pointer */ in cupsDirClose() 78 * Close an open directory handle... in cupsDirClose() 93 * 'cupsDirOpen()' - Open a directory. [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/testdata/script/ |
D | mod_outside.txt | 12 # 'go list' without arguments implicitly operates on the current directory, 15 stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modu… 18 # 'go list' in the working directory should fail even if there is a a 'package 21 stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modu… 44 … example.com/printversion: go.mod file not found in current directory or any parent directory; see… 57 stderr 'go: cannot match "all": go.mod file not found in current directory or any parent directory;… 61 stderr 'go: cannot match "all": go.mod file not found in current directory or any parent directory;… 66 …ns or an explicit version: go.mod file not found in current directory or any parent directory; see… 72 stderr 'go: cannot match "...": go.mod file not found in current directory or any parent directory;… 74 … match "rsc.io/quote/...": go.mod file not found in current directory or any parent directory; see… [all …]
|
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/ |
D | dfareporting_v3_3.directorySites.html | 82 <p class="firstline">Gets one directory site by ID.</p> 85 <p class="firstline">Inserts a new directory site.</p> 88 <p class="firstline">Retrieves a list of directory sites, possibly filtered. This method supports p… 100 <pre>Gets one directory site by ID. 104 id: string, Directory site ID. (required) 113 …{ # DirectorySites contains properties of a website from the Site Directory. Sites need to be adde… 114 "active": True or False, # Whether this directory site is active. 115 …"id": "A String", # ID of this directory site. This is a read-only, auto-gener… 116 …resents a DimensionValue resource. # Dimension value for the ID of this directory site. This is a … 131 "name": "A String", # Name of this directory site. [all …]
|
D | dfareporting_v3_4.directorySites.html | 82 <p class="firstline">Gets one directory site by ID.</p> 85 <p class="firstline">Inserts a new directory site.</p> 88 <p class="firstline">Retrieves a list of directory sites, possibly filtered. This method supports p… 100 <pre>Gets one directory site by ID. 104 id: string, Directory site ID. (required) 113 …{ # DirectorySites contains properties of a website from the Site Directory. Sites need to be adde… 114 …"id": "A String", # ID of this directory site. This is a read-only, auto-gener… 115 …resents a DimensionValue resource. # Dimension value for the ID of this directory site. This is a … 130 "name": "A String", # Name of this directory site. 131 "settings": { # Directory Site Settings # Directory site settings. [all …]
|
D | dfareporting_v3_5.directorySites.html | 82 <p class="firstline">Gets one directory site by ID.</p> 85 <p class="firstline">Inserts a new directory site.</p> 88 <p class="firstline">Retrieves a list of directory sites, possibly filtered. This method supports p… 100 <pre>Gets one directory site by ID. 104 id: string, Directory site ID. (required) 113 …{ # DirectorySites contains properties of a website from the Site Directory. Sites need to be adde… 114 …"id": "A String", # ID of this directory site. This is a read-only, auto-gener… 115 …resents a DimensionValue resource. # Dimension value for the ID of this directory site. This is a … 130 "name": "A String", # Name of this directory site. 131 "settings": { # Directory Site Settings # Directory site settings. [all …]
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/nio/file/ |
H A D | SecureDirectoryStream.java | 34 * relative to an open directory. A {@code SecureDirectoryStream} is intended 40 * to the open directory irrespective of if the directory is moved or replaced 41 * by an attacker while the directory is open. A {@code SecureDirectoryStream} 42 * may also be used as a virtual <em>working directory</em>. 53 * against the <i>original path</i> of the directory (irrespective of if the 54 * directory is moved since it was opened). 63 * Opens the directory identified by the given path, returning a {@code 64 * SecureDirectoryStream} to iterate over the entries in the directory. 69 * When the parameter is a relative path then the directory to open is 70 * relative to this open directory. The {@link [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/10/libcore/ojluni/src/main/java/java/nio/file/ |
D | SecureDirectoryStream.java | 34 * relative to an open directory. A {@code SecureDirectoryStream} is intended 40 * to the open directory irrespective of if the directory is moved or replaced 41 * by an attacker while the directory is open. A {@code SecureDirectoryStream} 42 * may also be used as a virtual <em>working directory</em>. 53 * against the <i>original path</i> of the directory (irrespective of if the 54 * directory is moved since it was opened). 63 * Opens the directory identified by the given path, returning a {@code 64 * SecureDirectoryStream} to iterate over the entries in the directory. 69 * When the parameter is a relative path then the directory to open is 70 * relative to this open directory. The {@link [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/nio/file/ |
D | SecureDirectoryStream.java | 34 * relative to an open directory. A {@code SecureDirectoryStream} is intended 40 * to the open directory irrespective of if the directory is moved or replaced 41 * by an attacker while the directory is open. A {@code SecureDirectoryStream} 42 * may also be used as a virtual <em>working directory</em>. 53 * against the <i>original path</i> of the directory (irrespective of if the 54 * directory is moved since it was opened). 63 * Opens the directory identified by the given path, returning a {@code 64 * SecureDirectoryStream} to iterate over the entries in the directory. 69 * When the parameter is a relative path then the directory to open is 70 * relative to this open directory. The {@link [all …]
|
/aosp_15_r20/external/bazelbuild-rules_go/tests/integration/popular_repos/ |
H A D | popular_repos.py | 40 "bpf:bpf_test", # Needs testdata directory 41 "html/charset:charset_test", # Needs testdata directory 42 "http2:http2_test", # Needs testdata directory 59 "windows:windows_test", # Needs testdata directory 68 "encoding/charmap:charmap_test", # Needs testdata directory 69 "encoding/japanese:japanese_test", # Needs testdata directory 70 "encoding/korean:korean_test", # Needs testdata directory 71 "encoding/simplifiedchinese:simplifiedchinese_test", # Needs testdata directory 72 "encoding/traditionalchinese:traditionalchinese_test", # Needs testdata directory 73 "encoding/unicode/utf32:utf32_test", # Needs testdata directory [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/.github/workflows/ |
D | ci.yml | 35 working-directory: ../boost-root 38 working-directory: ../boost-root 41 working-directory: ../boost-root 44 working-directory: ../boost-root 47 working-directory: ../boost-root 50 working-directory: ../boost-root 53 working-directory: ../boost-root/libs/config/test 56 working-directory: ../boost-root/libs/config/test 59 working-directory: ../boost-root/libs/regex/test 86 working-directory: ../boost-root [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/tempfile/src/dir/ |
D | mod.rs | 2 // file at the top-level directory of this distribution and at 23 /// Create a new temporary directory. 25 /// The `tempdir` function creates a directory in the file system 27 /// The directory will be automatically deleted when the `TempDir`s 36 /// If the directory can not be created, `Err` is returned. 45 /// // Create a directory inside of `env::temp_dir()` 52 /// // `tmp_dir` goes out of scope, the directory as well as 65 /// Create a new temporary directory in a specific directory. 67 /// The `tempdir_in` function creates a directory in the specified directory 69 /// The directory will be automatically deleted when the `TempDir`s [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/.github/workflows/ |
D | ci.yml | 55 working-directory: ../boost-root 58 working-directory: ../boost-root 61 working-directory: ../boost-root 64 working-directory: ../boost-root 67 working-directory: ../boost-root 70 working-directory: ../boost-root 73 working-directory: ../boost-root/libs/config/test 76 working-directory: ../boost-root/libs/config/test 79 working-directory: ../boost-root/libs/type_traits/test 118 working-directory: ../boost-root [all …]
|
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/file/ |
H A D | PathUtils.java | 102 * Constructs and initializes a new instance by accumulating directory and file info. 104 * @param dir1 First directory to compare. 105 * @param dir2 Seconds directory to compare. 217 * @param directory The directory to accumulate information. 223 …private static AccumulatorPathVisitor accumulate(final Path directory, final int maxDepth, final F… in accumulate() argument 224 …return visitFileTree(AccumulatorPathVisitor.withLongCounters(), directory, toFileVisitOptionSet(fi… in accumulate() 228 * Cleans a directory including subdirectories without deleting directories. 230 * @param directory directory to clean. 234 public static PathCounters cleanDirectory(final Path directory) throws IOException { in cleanDirectory() argument 235 return cleanDirectory(directory, EMPTY_DELETE_OPTION_ARRAY); in cleanDirectory() [all …]
|
/aosp_15_r20/external/mesa3d/.gitlab-ci/container/patches/ |
H A D | build-skqp_git-sync-deps.patch | 19 @@ -94,21 +94,25 @@ def is_git_toplevel(git, directory): 22 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip() 23 - return os.path.realpath(directory) == os.path.realpath(toplevel) 24 + return os.path.realpath(directory) == os.path.realpath(toplevel.decode()) 29 -def status(directory, checkoutable): 31 +def status(directory, commithash, change): 38 - directory = truncate(directory, dlen) 40 - sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable)) 41 + directory = truncate_beginning(directory, dlen) 44 + sys.stdout.write('%-*s %s %s\n' % (dlen, directory, symbol, commithash)) [all …]
|
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/manual/ |
D | cmake-file-api.7.rst | 20 The file-based API uses a ``<build>/.cmake/api/`` directory at the top 22 of files within the API directory. API file layout versioning is 29 API v1 is housed in the ``<build>/.cmake/api/v1/`` directory. 44 Clients may optionally create the ``reply/`` directory at any time 55 ``v1/query/`` directory. The form is:: 171 CMake writes an ``index-*.json`` file to the ``v1/reply/`` directory 264 the absolute path to the directory containing CMake resources like the 265 ``Modules/`` directory (see :variable:`CMAKE_ROOT`). 286 A JSON object mirroring the content of the ``query/`` directory 304 A member of this form appears for each client-owned directory [all …]
|
/aosp_15_r20/external/python/pyfakefs/pyfakefs/ |
D | fake_os.py | 232 dir_fd: If not `None`, the file descriptor of a directory, 233 with `file_path` being relative to this directory. 272 # handle opening directory - only allowed under Posix 406 """Change current working directory to target directory. 409 path: The path to new current working directory. 412 OSError: if user lacks permission to enter the argument directory 413 or if the target is not a directory. 419 raise OSError(errno.ENOTDIR, "Not a directory: " + str(path)) 422 directory = self.filesystem.resolve(path) 425 if not is_root() and not directory.st_mode | PERM_EXE: [all …]
|