MCPcopy Create free account
hub / github.com/cSploit/android / FuseBind

Class FuseBind

cSploit/src/org/csploit/android/events/FuseBind.java:6–18  ·  view source on GitHub ↗

a new fuse mountpoint has been found

Source from the content-addressed store, hash-verified

4 * a new fuse mountpoint has been found
5 */
6public class FuseBind implements Event {
7 public final String source, mountpoint;
8
9 public FuseBind(String source, String mountpoint) {
10 this.source = source;
11 this.mountpoint = mountpoint;
12 }
13
14 @Override
15 public String toString() {
16 return String.format("FuseBind: { source='%s', mountpoint='%s' }", this.source, this.mountpoint);
17 }
18}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected