Home
last modified time | relevance | path

Searched defs:daemon (Results 1 – 6 of 6) sorted by relevance

/packages/providers/MediaProvider/src/com/android/providers/media/fuse/
DFuseDaemon.java323 private native void native_start(long daemon, int deviceFd, String path, in native_start()
327 private native void native_delete(long daemon); in native_delete()
328 private native boolean native_should_open_with_fuse(long daemon, String path, boolean readLock, in native_should_open_with_fuse()
330 private native boolean native_uses_fuse_passthrough(long daemon); in native_uses_fuse_passthrough()
331 private native void native_invalidate_fuse_dentry_cache(long daemon, String path); in native_invalidate_fuse_dentry_cache()
332 private native boolean native_is_started(long daemon); in native_is_started()
333 private native FdAccessResult native_check_fd_access(long daemon, int fd, int uid); in native_check_fd_access()
334 private native void native_initialize_device_id(long daemon, String path); in native_initialize_device_id()
335 private native void native_setup_volume_db_backup(long daemon); in native_setup_volume_db_backup()
336 private native void native_delete_db_backup(long daemon, String key); in native_delete_db_backup()
[all …]
DExternalStorageServiceImpl.java92 FuseDaemon daemon = new FuseDaemon(mediaProvider, this, deviceFd, sessionId, in onStartSession() local
131 FuseDaemon daemon = onExitSession(sessionId); in onEndSession() local
/packages/providers/MediaProvider/jni/
Dcom_android_providers_media_FuseDaemon.cpp96 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_start() local
118 const fuse::FuseDaemon* daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_is_started() local
124 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_delete() local
132 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_should_open_with_fuse() local
148 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_uses_fuse_passthrough() local
158 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_invalidate_fuse_dentry_cache() local
175 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_check_fd_access() local
184 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_initialize_device_id() local
195 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_setup_volume_db_backup() local
201 fuse::FuseDaemon* const daemon = reinterpret_cast<fuse::FuseDaemon*>(java_daemon); in com_android_providers_media_FuseDaemon_delete_db_backup() local
[all …]
/packages/services/Car/cpp/watchdog/car-watchdog-lib/src/android/car/watchdoglib/
DCarWatchdogDaemonHelper.java89 void invoke(ICarWatchdog daemon) throws RemoteException; in invoke()
277 invokeDaemonMethod((daemon) -> { in getResourceOveruseConfigurations() argument
321 invokeDaemonMethodForVersionAtLeast((daemon) -> { in getThreadPriority() argument
362 ICarWatchdog daemon; in invokeDaemonMethodForVersionAtLeast() local
409 ICarWatchdog daemon = ICarWatchdog.Stub.asInterface(binder); in makeBinderConnection() local
/packages/services/Car/service/src/com/android/car/power/
DCarPowerManagementService.java1757 ICarPowerPolicySystemNotification daemon; in initializePowerPolicy() local
1896 ICarPowerPolicySystemNotification daemon; in notifyPowerPolicyChangeToDaemon() local
1999 ICarPowerPolicySystemNotification daemon = in makeBinderConnection() local
2018 private BinderHandler(ICarPowerPolicySystemNotification daemon) { in BinderHandler()
2495 ICarPowerPolicySystemNotification daemon; in definePowerPolicy() local
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/
DVpnTest.java3035 final String daemon, final LocalSocket socket, final String[] arguments, in sendArgumentsToDaemon()