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

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
H A Ddictionary.cpp168 bool Dictionary::needsToRunGC(const bool mindsBlockByGC) { argument
170 return mDictionaryStructureWithBufferPolicy->needsToRunGC(mindsBlockByGC);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableBinaryDictionary.java278 protected void runGCIfRequired(final boolean mindsBlockByGC) { argument
285 runGCIfRequiredLocked(mindsBlockByGC);
290 protected void runGCIfRequiredLocked(final boolean mindsBlockByGC) { argument
291 if (mBinaryDictionary.needsToRunGC(mindsBlockByGC)) {
318 runGCIfRequiredLocked(true /* mindsBlockByGC */);
345 runGCIfRequiredLocked(true /* mindsBlockByGC */);
367 runGCIfRequiredLocked(true /* mindsBlockByGC */);
395 runGCIfRequiredLocked(true /* mindsBlockByGC */);
638 if (mBinaryDictionary.needsToRunGC(false /* mindsBlockByGC */)) {
H A DBinaryDictionary.java173 private static native boolean needsToRunGCNative(long dict, boolean mindsBlockByGC); argument
496 if (needsToRunGC(true /* mindsBlockByGC */)) {
550 * @param mindsBlockByGC Whether to mind operations blocked by GC. We don't need to care about
554 public boolean needsToRunGC(final boolean mindsBlockByGC) { argument
556 return needsToRunGCNative(mNativeDict, mindsBlockByGC);
/packages/inputmethods/LatinIME/native/jni/
H A Dcom_android_inputmethod_latin_BinaryDictionary.cpp110 jlong dict, jboolean mindsBlockByGC) {
113 return dictionary->needsToRunGC(mindsBlockByGC == JNI_TRUE);
498 if (dictionary->needsToRunGC(true /* mindsBlockByGC */)) {
576 if (dictionaryStructureWithBufferPolicy->needsToRunGC(true /* mindsBlockByGC */)) {
596 if (dictionaryStructureWithBufferPolicy->needsToRunGC(true /* mindsBlockByGC */)) {
109 latinime_BinaryDictionary_needsToRunGC(JNIEnv *env, jclass clazz, jlong dict, jboolean mindsBlockByGC) argument

Completed in 214 milliseconds