Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. package com.tencent.hawk.bridge;
  2.  
  3. public class HawkNative {
  4. public static int version = 36;
  5.  
  6. static {
  7. System.loadLibrary("cubehawk");
  8. }
  9.  
  10. public static native void beginHawk();
  11.  
  12. public static native int checkDCLS(int i, int i2, String[] strArr);
  13.  
  14. public static native int checkEmulator(String str, String str2);
  15.  
  16. public static native int checkServerDCLS(String str, String str2, String str3, String str4, int i);
  17.  
  18. public static native void disableOpts(int i);
  19.  
  20. public static native void enableLogPrint();
  21.  
  22. public static native void enableSlinetMode();
  23.  
  24. public static native void enableTMode();
  25.  
  26. public static native void endHawk();
  27.  
  28. public static native int getFrames();
  29.  
  30. public static native String getPlatformInfo();
  31.  
  32. public static native String getRomInfo();
  33.  
  34. public static native void initCommitter(int i, long j, long j2, String str, String str2, String str3, String str4, String str5, String str6, String str7, String str8, int i2, int i3, int i4, int i5, int i6, int i7);
  35.  
  36. public static native void launchHawk(String str, int i, int i2, int i3);
  37.  
  38. public static native void levelControl(int i, int i2, int i3, String str);
  39.  
  40. public static native void postEvent(int i, String str);
  41.  
  42. public static native void postLagStatus(int i);
  43.  
  44. public static native void postMsgExt(int i, int i2, int i3, int i4, String str);
  45.  
  46. public static native void postNTL(int i, int i2);
  47.  
  48. public static native void postNTL2(int i, long j);
  49.  
  50. public static native void postVmpStatus(int i, int i2, int i3, int i4, String str);
  51.  
  52. public static native void processCCQualityCallback(int i);
  53.  
  54. public static native void processRomCallback(int i);
  55.  
  56. public static native int registerFBCallBack();
  57.  
  58. public static native void requestPssSample();
  59.  
  60. public static native void setAndroidId(String str);
  61.  
  62. public static native void setAppId(String str);
  63.  
  64. public static native void setAppStartupTime(int i);
  65.  
  66. public static native void setBuildEnv(int i);
  67.  
  68. public static native void setFBCheckPb(int i);
  69.  
  70. public static native void setFlashInfo(int i, int i2, int i3, int i4);
  71.  
  72. public static native void setGQuality(int i);
  73.  
  74. public static native void setGpuInfo(String str, String str2, String str3);
  75.  
  76. public static native void setHardwareInfo(String str);
  77.  
  78. public static native void setIMEI(long j);
  79.  
  80. public static native void setLocale(String str, int i);
  81.  
  82. public static native void setPssManualMode();
  83.  
  84. public static native void setQccFetherTime(int i);
  85.  
  86. public static native void setRevisedVersion(String str);
  87.  
  88. public static native void setRunConfigPolicy(int i, int i2, int i3, int i4);
  89.  
  90. public static native void setSDKVersion(int i);
  91.  
  92. public static native void setTargetFramerate(int i);
  93.  
  94. public static native void setTencentQemuBlocked();
  95.  
  96. public static native void setUUID(long j, long j2);
  97.  
  98. public static native void setUserId(String str);
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement