summaryrefslogtreecommitdiff
path: root/Source/Android/jni/AndroidCommon/IDCache.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2020-11-05 19:47:23 +0100
committerJosJuice <josjuice@gmail.com>2020-12-20 13:24:54 +0100
commita7c05d7e84df5949e8edf42fa6332d6aa58282f6 (patch)
tree8d0d1bc7ba04a6c7131ddcbb6c15424ea64a8d8e /Source/Android/jni/AndroidCommon/IDCache.cpp
parent99ffee9a0acc3200f8c8af7b3fc58af2d38fb614 (diff)
Android: Add content provider support to File::FileInfo
Diffstat (limited to 'Source/Android/jni/AndroidCommon/IDCache.cpp')
-rw-r--r--Source/Android/jni/AndroidCommon/IDCache.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/Android/jni/AndroidCommon/IDCache.cpp b/Source/Android/jni/AndroidCommon/IDCache.cpp
index 674233d79f..5f5503eb87 100644
--- a/Source/Android/jni/AndroidCommon/IDCache.cpp
+++ b/Source/Android/jni/AndroidCommon/IDCache.cpp
@@ -44,6 +44,7 @@ static jmethodID s_compress_cb_run;
static jclass s_content_handler_class;
static jmethodID s_content_handler_open_fd;
static jmethodID s_content_handler_delete;
+static jmethodID s_content_handler_get_size_and_is_directory;
static jclass s_network_helper_class;
static jmethodID s_network_helper_get_network_ip_address;
@@ -210,6 +211,11 @@ jmethodID GetContentHandlerDelete()
return s_content_handler_delete;
}
+jmethodID GetContentHandlerGetSizeAndIsDirectory()
+{
+ return s_content_handler_get_size_and_is_directory;
+}
+
jclass GetNetworkHelperClass()
{
return s_network_helper_class;
@@ -229,6 +235,7 @@ jmethodID GetNetworkHelperGetNetworkGateway()
{
return s_network_helper_get_network_gateway;
}
+
} // namespace IDCache
#ifdef __cplusplus
@@ -306,6 +313,8 @@ jint JNI_OnLoad(JavaVM* vm, void* reserved)
"(Ljava/lang/String;Ljava/lang/String;)I");
s_content_handler_delete =
env->GetStaticMethodID(s_content_handler_class, "delete", "(Ljava/lang/String;)Z");
+ s_content_handler_get_size_and_is_directory = env->GetStaticMethodID(
+ s_content_handler_class, "getSizeAndIsDirectory", "(Ljava/lang/String;)J");
const jclass network_helper_class =
env->FindClass("org/dolphinemu/dolphinemu/utils/NetworkHelper");