This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63ce2d4
commit 3b210d7
Showing
12 changed files
with
211 additions
and
24 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
qqinterface/src/main/java/com/tencent/mobileqq/perf/block/BinderMethodProxy.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.tencent.mobileqq.perf.block; | ||
|
||
import android.os.Bundle; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
import epic.EIPCClient; | ||
import epic.EIPCResult; | ||
import kotlin.Metadata; | ||
import kotlin.jvm.JvmStatic; | ||
|
||
public final class BinderMethodProxy { | ||
@NotNull | ||
public static final BinderMethodProxy INSTANCE; | ||
|
||
static { | ||
INSTANCE = new BinderMethodProxy(); | ||
} | ||
|
||
@JvmStatic | ||
public static EIPCResult callServer(@NotNull EIPCClient client, @Nullable String module, @Nullable String action, @Nullable Bundle bundle) { | ||
//MainBlockMethodMonitor.onMethodStart(); | ||
//EIPCResult callServer = client.callServer(str, str2, bundle); | ||
//MainBlockMethodMonitor.onMethodEnd(); | ||
//return callServer; | ||
return null; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
qqinterface/src/main/java/com/tencent/mobileqq/qipc/QIPCClientHelper.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.tencent.mobileqq.qipc; | ||
|
||
import epic.EIPCClient; | ||
|
||
public class QIPCClientHelper { | ||
public static synchronized QIPCClientHelper getInstance() { | ||
return null; | ||
} | ||
|
||
public EIPCClient getClient() { | ||
return null; | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
qqinterface/src/main/java/com/tencent/mobileqq/qmmkv/MMKVOptionEntity.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.tencent.mobileqq.qmmkv; | ||
|
||
public class MMKVOptionEntity { | ||
public String decodeString(String str, String str2) { | ||
return ""; | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
qqinterface/src/main/java/com/tencent/mobileqq/qmmkv/QMMKV.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.tencent.mobileqq.qmmkv; | ||
|
||
import android.content.Context; | ||
|
||
public class QMMKV { | ||
public static MMKVOptionEntity from(Context context, String str) { | ||
return null; | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
qqinterface/src/main/java/com/tencent/mobileqq/transfile/dns/IpData.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package com.tencent.mobileqq.transfile.dns; | ||
|
||
import android.os.Parcel; | ||
import android.os.Parcelable; | ||
|
||
import androidx.annotation.NonNull; | ||
|
||
public class IpData implements Parcelable { | ||
public int mFailedCount; | ||
public String mIp; | ||
public int mPort; | ||
public int mType; | ||
|
||
/** | ||
* Describe the kinds of special objects contained in this Parcelable | ||
* instance's marshaled representation. For example, if the object will | ||
* include a file descriptor in the output of {@link #writeToParcel(Parcel, int)}, | ||
* the return value of this method must include the | ||
* {@link #CONTENTS_FILE_DESCRIPTOR} bit. | ||
* | ||
* @return a bitmask indicating the set of special object types marshaled | ||
* by this Parcelable object instance. | ||
*/ | ||
@Override | ||
public int describeContents() { | ||
return 0; | ||
} | ||
|
||
/** | ||
* Flatten this object in to a Parcel. | ||
* | ||
* @param dest The Parcel in which the object should be written. | ||
* @param flags Additional flags about how the object should be written. | ||
* May be 0 or {@link #PARCELABLE_WRITE_RETURN_VALUE}. | ||
*/ | ||
@Override | ||
public void writeToParcel(@NonNull Parcel dest, int flags) { | ||
|
||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package epic; | ||
|
||
public class EIPCClient { | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package epic; | ||
|
||
import android.os.Bundle; | ||
|
||
public class EIPCResult { | ||
public Bundle data; | ||
|
||
public boolean isSuccess() { | ||
return false; | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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