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

/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DChildProcessLauncher.java57 private final ChildProcessConnection[] mChildProcessConnections; field in class:ChildProcessLauncher.ChildConnectionAllocator
76 mChildProcessConnections = new ChildProcessConnectionImpl[numChildServices];
100 assert mChildProcessConnections[slot] == null;
101 mChildProcessConnections[slot] = new ChildProcessConnectionImpl(context, slot,
105 return mChildProcessConnections[slot];
112 if (mChildProcessConnections[slot] != connection) {
113 int occupier = mChildProcessConnections[slot] == null ?
114 -1 : mChildProcessConnections[slot].getServiceNumber();
119 mChildProcessConnections[slot] = null;
131 return mChildProcessConnections
[all...]

Completed in 92 milliseconds