Searched defs:running (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/tests/SslLoad/src/com/android/sslload/
H A DSslLoad.java49 private boolean running = false; field in class:SslLoad
71 running = false;
77 running = !running;
78 button.setText(running ? "STOP" : "GO");
79 if (running) {
89 while (!running) {
/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.h36 virtual bool running() { return false; } function in class:android::WebmFrameThread
74 bool running() { function in class:android::WebmFrameSinkThread
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java159 * completes running a graph, whether the completion is due to a stop() call
160 * or the filters running out of data to process.
168 * when a graph is already running.
172 throw new RuntimeException("Graph is already running!");
189 throw new RuntimeException("Graph is already running!");
214 throw new RuntimeException("Cannot close graph while it is running!");
231 synchronized private void setRunning(boolean running) { argument
232 isProcessing = running;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitorCallback.java197 public void onFaceUnlockStateChanged(boolean running, int userId) { } argument
H A DKeyguardUpdateMonitor.java371 private void handleFaceUnlockStateChanged(boolean running, int userId) { argument
372 mUserFaceUnlockRunning.put(userId, running);
376 cb.onFaceUnlockStateChanged(running, userId);
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java222 boolean running = false; field in class:TestWebServer.AcceptThread
253 running = true;
255 while (running) {
260 running = false;
279 running = false;
283 running = false;
291 running = false;
349 boolean running = false; field in class:TestWebServer.Worker
375 running = false;
385 running
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java74 public void setIconAnimationRunning(boolean running) { argument
75 setIconAnimationRunning(running, mPublicLayout);
76 setIconAnimationRunning(running, mPrivateLayout);
79 private void setIconAnimationRunning(boolean running, NotificationContentView layout) { argument
83 setIconAnimationRunningForChild(running, contractedChild);
84 setIconAnimationRunningForChild(running, expandedChild);
88 private void setIconAnimationRunningForChild(boolean running, View child) { argument
91 setIconRunning(icon, running);
94 setIconRunning(rightIcon, running);
98 private void setIconRunning(ImageView imageView, boolean running) { argument
[all...]
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp988 static bool running = false; local
989 if (!running) {
991 running = true;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java207 // If there is a current command that is running we ask for a
577 throw new IllegalStateException("Command not pending or running.");
593 protected final void running() { method in class:RemotePrintDocument.AsyncCommand
606 throw new IllegalStateException("Not running.");
617 throw new IllegalStateException("Not running.");
655 running();
893 running();
895 // This is a long running operation as we will be reading fully
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java250 public ProcessStats(boolean running) { argument
251 mRunning = running;
499 String running = "";
503 running = " (running)";
515 TimeUtils.formatDuration(time, pw); pw.println(running);
830 String running = "";
832 running = " (running)";
846 TimeUtils.formatDuration(time, pw); pw.println(running);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1103 * @param cancelAnimators Should running animations be cancelled.
1116 * @param cancelAnimators Should running animations be cancelled.
1655 boolean running = mIsExpanded && mAnimationsEnabled;
1659 updateAnimationState(running, child);
1668 private void updateAnimationState(boolean running, View child) { argument
1671 row.setIconAnimationRunning(running);
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java548 // persisted) salt. Validation is performed by running the challenge text through the
601 // If we're running a schedule-driven full backup, this is the task instance doing it
699 // Spin up a backup state sequence and set it running
1134 Slog.i(TAG, "Backup time but one already running");
2418 // it's running here in the system process we can just set up its agent
2684 // At this point the agent is off and running. The next thing to happen will
2877 // back but proceed with running the rest of the queue.
2911 // Whoops, the current agent timed out running doBackup(). Tidy up and restage
3163 Slog.e(TAG, "Error running full backup for " + mPackage.packageName);
3376 // The agent was running wit
3842 setRunning(boolean running) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java192 // CPU update, even if we aren't currently running wake locks.
587 public boolean setRunning(boolean running, long uptime, long realtime) { argument
588 if (mRunning != running) {
589 mRunning = running;
590 if (running) {
1365 * time we have been running since we last computed an update.
1454 // We are running...
1468 // Ignore attempt to stop a timer that isn't running
1507 // Update the total time for all other running Timers with the same type as this Timer
1625 // running a
[all...]

Completed in 1298 milliseconds