OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LibraryProcessType
(Results
1 - 5
of
5
) sorted by null
/external/libmojo/base/android/library_loader/
library_loader_hooks.h
18
enum
LibraryProcessType
{
74
BASE_EXPORT
LibraryProcessType
GetLibraryProcessType(JNIEnv* env);
library_loader_hooks.cc
218
LibraryProcessType
GetLibraryProcessType(JNIEnv* env) {
219
return static_cast<
LibraryProcessType
>(
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/
MojoTestCase.java
12
import org.chromium.base.library_loader.
LibraryProcessType
;
30
LibraryLoader.get(
LibraryProcessType
.PROCESS_BROWSER).ensureInitialized();
/external/libmojo/base/android/javatests/src/org/chromium/base/metrics/
RecordHistogramTest.java
15
import org.chromium.base.library_loader.
LibraryProcessType
;
28
LibraryLoader.get(
LibraryProcessType
.PROCESS_BROWSER).ensureInitialized();
/external/libmojo/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java
113
* @param
libraryProcessType
the process the shared library is loaded in. refer to
114
*
LibraryProcessType
for possible values.
117
public static LibraryLoader get(int
libraryProcessType
) throws ProcessInitException {
120
if (sInstance.mLibraryProcessType ==
libraryProcessType
) return sInstance;
124
sInstance = new LibraryLoader(
libraryProcessType
);
129
private LibraryLoader(int
libraryProcessType
) {
130
mLibraryProcessType =
libraryProcessType
;
448
* @return the process the shared library is loaded in, see the
LibraryProcessType
453
if (sInstance == null) return
LibraryProcessType
.PROCESS_UNINITIALIZED;
Completed in 469 milliseconds