Home
last modified time | relevance | path

Searched refs:notifyFileChanged (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/command/
DCommandFileWatcherTest.java61 verify(mMockListener).notifyFileChanged(cmdFile, EMPTY_ARGS); in testImmediateChange()
87 verify(mMockListener).notifyFileChanged(cmdFile2, EMPTY_ARGS); in testMultipleCmdFiles()
105 verify(mMockListener).notifyFileChanged(cmdFile1, EMPTY_ARGS); in testDependencies()
124 verify(mMockListener).notifyFileChanged(cmdFile1, EMPTY_ARGS); in testMultipleDependencies()
139 verify(mMockListener).notifyFileChanged(cmdFile1, EMPTY_ARGS); in testReplacingWatchedFile()
DCommandSchedulerTest.java641 mScheduler.notifyFileChanged(new File("mycmd.txt"), extraArgs); in testAddCommandFile_reload()
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandFileWatcher.java47 public void notifyFileChanged(File cmdFile, List<String> extraArgs); in notifyFileChanged() method
194 mListener.notifyFileChanged(cmd.file, cmd.extraArgs); in checkForUpdates()
DCommandScheduler.java2548 public void notifyFileChanged(File cmdFile, List<String> extraArgs) { in notifyFileChanged() method in CommandScheduler