Home
last modified time | relevance | path

Searched refs:remove (Results 1 – 25 of 277) sorted by relevance

12345678910>>...12

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DFileUtilTest.java331 perms.remove(PosixFilePermission.OWNER_READ) && in testUnixModeToPosix()
332 perms.remove(PosixFilePermission.OWNER_WRITE) && in testUnixModeToPosix()
333 perms.remove(PosixFilePermission.OWNER_EXECUTE) && in testUnixModeToPosix()
334 perms.remove(PosixFilePermission.GROUP_READ) && in testUnixModeToPosix()
335 perms.remove(PosixFilePermission.GROUP_WRITE) && in testUnixModeToPosix()
336 perms.remove(PosixFilePermission.GROUP_EXECUTE) && in testUnixModeToPosix()
337 perms.remove(PosixFilePermission.OTHERS_READ) && in testUnixModeToPosix()
338 perms.remove(PosixFilePermission.OTHERS_WRITE) && in testUnixModeToPosix()
339 perms.remove(PosixFilePermission.OTHERS_EXECUTE) && in testUnixModeToPosix()
343 perms.remove(PosixFilePermission.OWNER_READ) && in testUnixModeToPosix()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DLocalPool.java57 mRejectedToken.remove(test); in poll()
58 mTokenPool.remove(test); in poll()
68 mTokenPool.remove(test); in poll()
69 mRejectedToken.remove(test); in poll()
84 mGenericPool.remove(test); in poll()
99 mRejectedToken.remove(test); in pollRejectedTokenModule()
100 mTokenPool.remove(test); in pollRejectedTokenModule()
/tools/treble/hacksaw/codebase/
Dcodebase.go46 func Remove(remove string) (*config.Config, error) {
48 _, ok := cfg.Codebases[remove]
50 return nil, fmt.Errorf("Codebase %s not found", remove)
52 delete(cfg.Codebases, remove)
53 if cfg.DefaultCodebase == remove {
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DTestTimeoutEnforcer.java87 mTrackingStartTime.remove(test); in testFailed()
94 mTrackingStartTime.remove(test); in testFailed()
101 mTrackingStartTime.remove(test); in testIgnored()
108 mTrackingStartTime.remove(test); in testAssumptionFailure()
115 mTrackingStartTime.remove(test); in testAssumptionFailure()
145 mTrackingStartTime.remove(test); in testEnded()
/tools/tradefederation/core/invocation_interfaces/com/android/tradefed/invoker/
DExecutionFiles.java92 mShouldNotDelete.remove(key.toString()); in put()
186 public File remove(String key) { in remove() method in ExecutionFiles
187 return mFiles.remove(key); in remove()
197 mFiles.remove(key); in clearFiles()
DExecutionProperties.java112 public String remove(String key) { in remove() method in ExecutionProperties
113 return mProperties.remove(key); in remove()
/tools/treble/hacksaw/workspace/
Dworkspace.go214 func (w Workspace) Remove(remove string) (*config.Config, error) {
216 _, ok := cfg.Workspaces[remove]
218 return cfg, fmt.Errorf("Workspace %s not found", remove)
220 workspaceDir, err := w.GetDir(remove)
229 if err = w.DetachGitWorktrees(remove, unbindList); err != nil {
237 delete(cfg.Workspaces, remove)
/tools/tradefederation/core/src/com/android/tradefed/device/
DManagedDeviceList.java255 iterator.remove();
307 mList.remove(d);
333 mList.remove(d);
384 remove(d);
389 private void remove(IManagedTestDevice d) {
392 mList.remove(d);
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandFileParser.java165 public boolean remove(int idx) { in remove() method in CommandFileParser.Bitmask
166 boolean retVal = mBitmask.remove(idx); in remove()
367 mIncludedFiles.remove(file.getAbsolutePath()); in parseFile()
419 mLines.remove(inputIdx); in parseFile()
420 inputBitmask.remove(inputIdx); in parseFile()
461 suffix.remove(0); in expandLongMacro()
495 line.remove(idx); in expandMacro()
/tools/tradefederation/core/src/com/android/tradefed/build/
DFileDownloadCache.java261 mFileLocks.remove(remoteFilePath); in unlockFile()
272 mJvmLocks.remove(remoteFilePath); in unlockFile()
345 cachedFile = mCacheMap.remove(remotePath); in internalfetchRemoteFile()
473 keyIterator.remove(); in incrementAndAdjustCache()
568 File file = mCacheMap.remove(remoteFilePath); in deleteCacheEntry()
601 public V remove(Object key) { in remove() method in FileDownloadCache.CollapsedKeyMap
603 return super.remove(new File((String) key).getPath()); in remove()
605 return super.remove(key); in remove()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/apilevels/
DApiClass.kt72 mSuperClasses.remove(entry) in removeSuperClass()
170 iterator.remove() in removeImplicitInterfaces()
216 it.remove() in removeOverridingMethods()
305 iterator.remove() in removeHiddenSuperClasses()
328 superClassIter.remove() in removeMissingClasses()
335 interfacesIter.remove() in removeMissingClasses()
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatLfnDirectory.java333 public void remove() { in iterator() method
347 public void remove(String name) in remove() method
383 this.longNameIndex.remove(lowerName); in unlinkEntry()
386 this.shortNameIndex.remove(sn); in unlinkEntry()
389 this.entryToFile.remove(entry.realEntry); in unlinkEntry()
391 this.entryToDirectory.remove(entry.realEntry); in unlinkEntry()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DResolvePartialDownload.java80 String destDir = args.remove(DESTINATION_DIR); in execute()
81 String includeFilter = args.remove(INCLUDE_FILTERS); in execute()
86 String excludeFilter = args.remove(EXCLUDE_FILTERS); in execute()
94 String remotePaths = args.remove(REMOTE_PATHS); in execute()
/tools/tradefederation/core/src/com/android/tradefed/util/
DGCSBucketUtil.java568 public CommandResult remove(String pattern, boolean force) throws IOException { in remove() method in GCSBucketUtil
608 public CommandResult remove(String pattern) throws IOException { in remove() method in GCSBucketUtil
609 return remove(pattern, false); in remove()
618 public CommandResult remove(Path path, boolean force) throws IOException { in remove() method in GCSBucketUtil
619 return remove(path.toString(), force); in remove()
627 public CommandResult remove(Path path) throws IOException { in remove() method in GCSBucketUtil
628 return remove(path.toString(), false); in remove()
DSubprocessEventHelper.java195 jsonObject.remove(TIME_KEY); in TestRunEndedEventInfo()
342 jsonObject.remove(CLASSNAME_KEY); in BaseTestEventInfo()
344 jsonObject.remove(TESTNAME_KEY); in BaseTestEventInfo()
383 jsonObject.remove(START_TIME); in TestStartedEventInfo()
512 jsonObject.remove(END_TIME); in TestEndedEventInfo()
552 jsonObject.remove(DATA_NAME_KEY); in TestLogEventInfo()
559 jsonObject.remove(DATA_TYPE_KEY); in TestLogEventInfo()
596 jsonObject.remove(DATA_NAME_KEY); in LogAssociationEventInfo()
DFlashingResourceUtil.java82 keyAndFiles.remove(BuildInfoKey.BuildInfoFileKey.DEVICE_IMAGE.getFileKey()); in setUpFlashingResources()
87 keyAndFiles.remove(BuildInfoKey.BuildInfoFileKey.BOOTLOADER_IMAGE.getFileKey()); in setUpFlashingResources()
92 keyAndFiles.remove(BuildInfoKey.BuildInfoFileKey.BASEBAND_IMAGE.getFileKey()); in setUpFlashingResources()
/tools/tradefederation/core/javatests/com/android/tradefed/suite/checker/baseline/
DSettingsBaselineSetterTest.java55 mJsonObject.remove("namespace"); in settingsDeviceBaselineSetter_noNamespaceField_throwsException()
62 mJsonObject.remove("key"); in settingsDeviceBaselineSetter_noKeyField_throwsException()
69 mJsonObject.remove("value"); in settingsDeviceBaselineSetter_noValueField_throwsException()
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DConditionPriorityBlockingQueue.java147 mList.remove(minObject); in poll()
218 mWaitingMatcherList.remove(myMatcherPair); in blockingPoll()
373 public boolean remove(T object) { in remove() method in ConditionPriorityBlockingQueue
376 return mList.remove(object); in remove()
/tools/test/connectivity/acts/framework/
Dsetup.py150 sys.path.remove(framework_dir)
153 sys.path.remove(os.getcwd())
207 os.remove(act_file)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/
Dtel_voice_conf_utils.py208 calls.remove(call_conf_id)
337 calls.remove(call_conf_id)
353 calls.remove(call_to_disconnect)
379 calls.remove(call_to_disconnect)
460 calls.remove(call_conf_id)
476 calls.remove(call_to_disconnect)
502 calls.remove(call_to_disconnect)
/tools/security/gdb/heap_print/
Dheap_print_script.py73 def remove(address): member in HeapMapping
101 HeapMapping.remove(self.prev_address)
160 HeapMapping.remove(int_address)
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DZFile.java959 map.remove(mapEntry); in delete()
960 entries.remove(path); in delete()
1064 map.remove(entry); in update()
1065 Verify.verify(entry == entries.remove(name)); in update()
1244 map.remove(mapEntry); in reAdd()
1245 entries.remove(name); in reAdd()
1302 map.remove(directoryEntry); in deleteDirectoryAndEocd()
1307 map.remove(eocdEntry); in deleteDirectoryAndEocd()
1815 uncompressedEntries.remove(0); in processAllReadyEntries()
2140 map.remove(mapEntry); in realign()
[all …]
/tools/platform-compat/build/
Dprocess-compat-config-test.py40 remove = []
49 remove.append(child)
51 for child in remove:
/tools/tradefederation/core/src/com/android/tradefed/config/proxy/
DProxyConfiguration.java63 argsList.remove(index + 1); in clearCommandline()
64 argsList.remove(index); in clearCommandline()
/tools/netsim/rust/cli/
Dnetsim-cli.md91 * `remove`: Remove a beacon
92 * Usage: `netsim beacon remove <DEVICE_NAME> [CHIP_NAME]`
94 * \<DEVICE_NAME\>: Name of the device to remove
95 * \[CHIP_NAME\]: Optional name of the beacon to remove

12345678910>>...12