Searched defs:runner (Results 1 - 16 of 16) sorted by path

/frameworks/base/core/java/android/app/
H A DInstrumentation.java346 * @param runner The code to run on the main thread.
348 public void runOnMainSync(Runnable runner) { argument
350 SyncRunnable sr = new SyncRunnable(runner);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java48 protected RunnerResult doInBackground(SyncRunner... runner) { argument
51 if (runner.length > 1) {
52 throw new RuntimeException("More than one runner received!");
55 runner[0].assertReadyToStep();
62 runner[0].beginProcessing();
69 if (!runner[0].performStep()) {
70 result.status = runner[0].determinePostRunState();
72 runner[0].waitUntilWake();
134 /** Create a new asynchronous graph runner with the given filter
146 /** Create a new asynchronous graph runner wit
[all...]
/frameworks/base/test-runner/src/junit/runner/
H A DClassPathTestCollector.java1 package junit.runner;
H A DFailureDetailView.java1 package junit.runner;
H A DLoadingTestCollector.java1 package junit.runner;
H A DReloadingTestSuiteLoader.java1 package junit.runner;
H A DSimpleTestCollector.java1 package junit.runner;
H A DSorter.java1 package junit.runner;
H A DTestCaseClassLoader.java1 package junit.runner;
31 "junit.runner."
H A DTestCollector.java1 package junit.runner;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFilterGraph.java309 * this before any other runner is set. Note that calls to {@code getRunner()} and
312 * @param runner The GraphRunner instance that should execute this graph.
316 public void attachToRunner(GraphRunner runner) { argument
319 subGraph.attachToRunner(runner);
321 runner.attachGraph(this);
322 mRunner = runner;
323 } else if (mRunner != runner) {
461 * Creates a new runner for this graph in the specified mode and executes it. Returns the
462 * runner to allow control of execution.
468 GraphRunner runner
[all...]
H A DFrameManager.java264 GraphRunner runner = GraphRunner.current();
265 return runner != null ? runner.getFrameManager() : null;
312 * used in the runner that uses this FrameManager. As the new frame may share data with the
389 * @param runner the GraphRunner to bind the FrameManager to.
392 FrameManager(GraphRunner runner, int cacheType) { argument
393 mRunner = runner;
H A DGraphRunner.java544 * Callback method that is called when the runner completes a run. This method is called
547 public void onGraphRunnerStopped(GraphRunner runner); argument
550 * Callback method that is called when runner encounters an error.
564 public void onSubGraphRunEnded(GraphRunner runner); argument
574 /** The runner's thread priority. */
616 * instances to this runner before you can execute any of these graphs.
618 * @param context The MffContext instance for this runner.
627 * instances to this runner before you can execute any of these graphs.
629 * @param context The MffContext instance for this runner.
630 * @param config A Config instance with the configuration of this runner
[all...]
H A DMffContext.java325 void addRunner(GraphRunner runner) { argument
327 mRunners.add(runner);
391 for (GraphRunner runner : mRunners) {
393 runner.halt();
395 runner.stop();
400 for (GraphRunner runner : mRunners) {
401 runner.flushFrames();
409 for (GraphRunner runner : mRunners) {
410 runner.restart();
423 for (GraphRunner runner
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java535 * Use the low level net runner with no delayed response
536 * @param runner The LowLevelNetRunner object
538 public void setNetRunner(LowLevelNetRunner runner) { argument
539 setNetRunner(runner, false);
543 * Use the low level net runner and specify if the response
545 * @param runner The LowLevelNetRunner object
549 public void setNetRunner(LowLevelNetRunner runner, argument
551 netRunner = runner;
/frameworks/multidex/instrumentation/src/com/android/test/runner/
H A DMultiDexTestRunner.java17 package com.android.test.runner;

Completed in 1450 milliseconds