HomeSort by relevance Sort by last modified time
    Searched defs:ContextStorage (Results 1 - 3 of 3) sorted by null

  /frameworks/base/awt/java/awt/
GraphicsEnvironment.java 27 import org.apache.harmony.awt.ContextStorage;
52 synchronized (ContextStorage.getContextLock()) {
53 if (ContextStorage.getGraphicsEnvironment() == null) {
55 ContextStorage.setGraphicsEnvironment(new HeadlessGraphicsEnvironment());
60 ContextStorage.setGraphicsEnvironment(g2df
61 .createGraphicsEnvironment(ContextStorage.getWindowFactory()));
65 return ContextStorage.getGraphicsEnvironment();
Toolkit.java 47 import org.apache.harmony.awt.ContextStorage;
119 private final Synchronizer synchronizer = ContextStorage.getSynchronizer();
222 ContextStorage.getSynchronizer().lock();
236 ContextStorage.getSynchronizer().unlock();
321 synchronized (ContextStorage.getContextLock()) {
322 if (ContextStorage.shutdownPending()) {
325 Toolkit defToolkit = ContextStorage.getDefaultToolkit();
333 ContextStorage.setDefaultToolkit(defToolkit);
427 ContextStorage.setWTK(wtk);
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/
ContextStorage.java 31 public final class ContextStorage {
36 private static final ContextStorage globalContext = new ContextStorage();
115 private static ContextStorage getCurrentContext() {

Completed in 22 milliseconds