This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.nio.charset.Charset; | |
| import java.util.*; | |
| /** | |
| * Parses of /proc/mounts. | |
| */ | |
| public class MountInfo { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package me.madeye; | |
| import java.lang.reflect.Constructor; | |
| import java.lang.reflect.Field; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| import org.apache.http.HttpHost; | |
| import android.content.Context; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package android.support.v4.app; | |
| import android.os.Bundle; | |
| import android.os.Handler; | |
| import android.view.ContextMenu; | |
| import android.view.ContextMenu.ContextMenuInfo; | |
| import android.view.Gravity; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.View.OnCreateContextMenuListener; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if _WIN32_WINNT < 0x0500 | |
| # error "should be NT" | |
| #endif | |
| #include <windows.h> | |
| #include <tlhelp32.h> | |
| #include <winternl.h> | |
| #include <stdio.h> | |
| DWORD getppid() | |
| { |
NewerOlder