Lines Matching refs:dicLibHandle
231 work->dicLibHandle = ( void* )dlopen( dicLibPath, RTLD_LAZY ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
234 if( work->dicLibHandle == NULL ) { in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
240 dic_size = ( NJ_UINT32* )dlsym( work->dicLibHandle, "dic_size" ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
241 dic_type = ( NJ_UINT8* )dlsym( work->dicLibHandle, "dic_type" ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
242 dic_data = ( NJ_UINT8** )dlsym( work->dicLibHandle, "dic_data" ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
244 dlclose( work->dicLibHandle ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
256 con_data = ( NJ_UINT8** )dlsym( work->dicLibHandle, "con_data" ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
272 dlclose( work->dicLibHandle ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork()
292 if( work->dicLibHandle != NULL ) { in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_freeWnnWork()
293 dlclose( work->dicLibHandle ); in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_freeWnnWork()
294 work->dicLibHandle = NULL; in Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_freeWnnWork()