file_name
stringlengths
6
86
file_path
stringlengths
45
249
content
stringlengths
47
6.26M
file_size
int64
47
6.26M
language
stringclasses
1 value
extension
stringclasses
1 value
repo_name
stringclasses
767 values
repo_stars
int64
8
14.4k
repo_forks
int64
0
1.17k
repo_open_issues
int64
0
788
repo_created_at
stringclasses
767 values
repo_pushed_at
stringclasses
767 values
MD5.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/drcom/MD5.java
package com.example.drcom; import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; /** * Created by lin on 2017-01-10-010. * MD5 */ public class MD5 { private static final byte[] zero16...
3,886
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
DrcomException.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/drcom/DrcomException.java
package com.example.drcom; /** * Created by lin on 2017-01-09-009. * 异常 */ public class DrcomException extends Exception { public DrcomException(String msg) { super('[' + CODE.ex_unknown.name() + "] " + msg); } public DrcomException(String msg, CODE code) { super('[' + code.name() + "] ...
712
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
ByteUtil.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/drcom/ByteUtil.java
package com.example.drcom; import java.math.BigInteger; import java.util.Random; /** * Created by lin on 2017-01-11-011. * 字节数组工具, byte 数字当作无符号数处理. 因此 toInt(0xff) 将得到 255. */ public class ByteUtil { private static final Random random = new Random(System.currentTimeMillis()); public static byte randByte() ...
5,818
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
HostInfo.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/drcom/HostInfo.java
package com.example.drcom; /** * Created by lin on 2017-01-10-010. * 机器的IP、HostName、MAC等 */ public class HostInfo { private final byte[] macBytes = new byte[6]; private String hostname; private String macHexDash; private String macNoDash; public HostInfo(String hostname, String macHex) { ...
2,093
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
Constants.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/drcom/Constants.java
package com.example.drcom; /** * Created by lin on 2017-01-09-009. * 常量 */ public class Constants { public static final String AUTH_SERVER = "10.100.61.3"; //"auth.jlu.edu.cn" public static final int PORT = 61440; public static final int TIMEOUT = 10000;//10s }
282
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
STATUS.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/drcom/STATUS.java
package com.example.drcom; /** * Created by lin on 2017-01-13-013. * 登录状态 */ public enum STATUS { offline, online; }
133
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
DrcomTask.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/drcom/DrcomTask.java
package com.example.drcom; import android.os.AsyncTask; import android.util.Log; import com.example.service.KeepListener; import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import java.net.SocketException; import java.net.SocketTimeoutException; i...
26,323
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
SettingsActivity.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/gui/SettingsActivity.java
package com.example.gui; import android.content.SharedPreferences; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.SwitchCompat; import android.widget.CompoundButton; import com.example.drclient.R; public class SettingsActivity extends AppCompatActivity { ...
2,145
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
MainActivity.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/gui/MainActivity.java
package com.example.gui; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.ServiceConnection; import android.content.SharedPreferences; import android.os.IBinder; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import ...
12,261
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
KeepListener.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/service/KeepListener.java
package com.example.service; import com.example.drcom.STATUS; public interface KeepListener { void keepingAlive(String content); void informLogStatus(STATUS status, String[] s); void informCanLoginNow(boolean canReconnect, String[] s); void informLogoutSucceed(); void informInvalidNameOrPass(); ...
349
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
UIController.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/service/UIController.java
package com.example.service; public interface UIController { void loggedIn(String[] s); void offline(); void canLoginNow(String[] s); void logoutSucceed(); void invalidNameOrPass(); void invalidMAC(); }
228
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
KeepService.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/main/java/com/example/service/KeepService.java
package com.example.service; import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.app.Service; import android.content.Context; import android.content.Intent; import android.os.AsyncTask; import android.os.Binde...
4,921
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
ExampleInstrumentedTest.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android-new/app/src/androidTest/java/com/example/drclient/ExampleInstrumentedTest.java
package com.example.drclient; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android de...
724
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
packet_CRC.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/packet_CRC.java
package com.example.drcom; public class packet_CRC { public static byte[] crc(byte[] check) throws NumberFormatException, Exception{ long ret = 0; byte[] check_foo = new byte[2]; int j_foo = 1; for(int j=0;j<check.length;j=j+2){ int i_foo = 0; for(int i=0;i<2;i++){ if(2*j_foo-1-i_foo>check.lengt...
584
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
keep_alive_package_builder.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/keep_alive_package_builder.java
package com.example.drcom; public class keep_alive_package_builder { public static byte[] build(int number, byte[] random, byte[] tail, int type, boolean first) throws NumberFormatException, Exception{ byte[] data_1_1 = {0x07, (byte) number}; byte[] data_1_2 = {0x28, 0x00, 0x0b, (byte)type}; byte[] data_1 = Byt...
1,562
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
mkpkt.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/mkpkt.java
package com.example.drcom; public class mkpkt { public static byte[] dr_mkpkt(byte[] salt, String ipaddr, String usr, String pwd, String mac) throws Exception{ byte[] data_3 = new byte[36]; byte[] data_5 = new byte[6]; byte[] data_8 = new byte[16]; byte[] data_9 = new byte[8]; byte[] data_11 = new byt...
4,067
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
MainActivity.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/MainActivity.java
package com.example.drcom; import android.os.Bundle; import android.os.Looper; import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; import android.view.Menu; import android.view.View; import android.widget.Button; import...
5,098
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
ByteMerge.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/ByteMerge.java
package com.example.drcom; public class ByteMerge { public static byte[] byteMerger(byte[] byte_1, byte[] byte_2){ byte[] byte_3 = new byte[byte_1.length+byte_2.length]; System.arraycopy(byte_1, 0, byte_3, 0, byte_1.length); System.arraycopy(byte_2, 0, byte_3, byte_1.length, byte_2.lengt...
359
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
challenge.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/challenge.java
package com.example.drcom; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import java.util.Random; public class challenge { public static byte[] dr_challenge(String svr, boolean flag) throws Exception{ DatagramSocket client = new DatagramSocket(); InetAddress ...
1,078
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
mkopkt.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/mkopkt.java
package com.example.drcom; public class mkopkt { public static byte[] dr_mkopkt(byte[] salt, String ipaddr, String usr, String pwd, String mac, byte[] authinfo) throws Exception{ String ip = ipaddr; //MainActivity.ipaddr; String[] ip_foo = ip.split("\\."); byte[] username = new byte[36]; byte[] mxm = ne...
1,442
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
dump.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/dump.java
package com.example.drcom; public class dump { public static byte[] dr_dump(String mac) throws NumberFormatException, Exception{ long foo = Long.parseLong(mac, 16);; String s= Long.toHexString(foo); if(s.length() % 2 == 1){ String str_foo = "0" + s; return HexStr2ByteArr.hexStr2ByteArr(str_foo); } ret...
370
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
checksum.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/checksum.java
package com.example.drcom; public class checksum { public static byte[] dr_checksum(byte[] check) throws Exception{ long ret = 1234; byte[] check_foo = new byte[4]; int j_foo = 1; for(int j=0;j<check.length;j=j+4){ int i_foo = 0; for(int i=0;i<4;i++){ if(4*j_foo-1-i_foo>check.length){bre...
631
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
ror.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/ror.java
package com.example.drcom; public class ror { public static byte[] dr_ror(byte[] md5, String pwd) throws Exception{ String ret = ""; char[] pwd_foo = pwd.toCharArray(); for(int i=0;i<pwd.length();i++){ byte[] gg = {md5[i]}; int x = Integer.valueOf(ByteArr2HexStr.byteArr2HexStr(gg), 16) ^ Integer.valueO...
638
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
keep_alive.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/keep_alive.java
package com.example.drcom; import java.util.Random; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; public class keep_alive { public static void keep(String svr) throws NumberFormatException, Exception{ Random random = new Random(); byte[] tail = new byte[4]; int ...
2,973
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
logout.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/logout.java
package com.example.drcom; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import android.content.Context; import android.widget.Toast; public class logout { public static void dr_logout(String usr, String ipaddr, String pwd, String svr, String mac, byte[] authinfo, Cont...
1,007
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
login.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/drcom-android/src/com/example/drcom/login.java
package com.example.drcom; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import android.annotation.SuppressLint; import android.content.Context; import android.widget.Toast; public class login { @SuppressLint("ShowToast") public static byte[] dr_login(String usr, Stri...
1,345
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
Drcom.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/Drcom.java
package com.youthlin.jlu.drcom; import com.youthlin.jlu.drcom.bean.STATUS; import com.youthlin.jlu.drcom.controller.AppController; import com.youthlin.jlu.drcom.util.Constants; import com.youthlin.jlu.drcom.util.FxUtil; import com.youthlin.utils.i18n.Translation; import javafx.application.Application; import javafx.ap...
7,534
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
HostInfo.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/bean/HostInfo.java
package com.youthlin.jlu.drcom.bean; /** * Created by lin on 2017-01-10-010. * 机器的IP、HostName、MAC等 */ public class HostInfo { private final byte[] macBytes = new byte[6]; private String hostname; private String macHexDash; private String macNoDash; private String address4 = "0.0.0.0";//仅用于显示 ...
2,811
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
STATUS.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/bean/STATUS.java
package com.youthlin.jlu.drcom.bean; /** * Created by lin on 2017-01-13-013. * 登录状态 */ public enum STATUS { init, ready, onLogin, logged }
155
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
AppController.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/controller/AppController.java
package com.youthlin.jlu.drcom.controller; import com.youthlin.jlu.drcom.Drcom; import com.youthlin.jlu.drcom.bean.HostInfo; import com.youthlin.jlu.drcom.bean.STATUS; import com.youthlin.jlu.drcom.task.DrcomTask; import com.youthlin.jlu.drcom.util.ByteUtil; import com.youthlin.jlu.drcom.util.Constants; import com.you...
23,567
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
DrcomTask.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/task/DrcomTask.java
package com.youthlin.jlu.drcom.task; import com.youthlin.jlu.drcom.Drcom; import com.youthlin.jlu.drcom.bean.HostInfo; import com.youthlin.jlu.drcom.bean.STATUS; import com.youthlin.jlu.drcom.controller.AppController; import com.youthlin.jlu.drcom.exception.DrcomException; import com.youthlin.jlu.drcom.util.ByteUtil; ...
23,282
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
DrcomException.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/exception/DrcomException.java
package com.youthlin.jlu.drcom.exception; /** * Created by lin on 2017-01-09-009. * 异常 */ public class DrcomException extends Exception { public DrcomException(String msg) { super('[' + CODE.ex_unknown.name() + "] " + msg); } public DrcomException(String msg, CODE code) { super('[' + co...
728
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
MD5.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/util/MD5.java
package com.youthlin.jlu.drcom.util; import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; /** * Created by lin on 2017-01-10-010. * MD5 */ public class MD5 { private static final byt...
3,906
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
FxUtil.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/util/FxUtil.java
package com.youthlin.jlu.drcom.util; import javafx.application.Platform; import javafx.scene.control.Alert; import javafx.scene.control.Label; import javafx.scene.control.TextArea; import javafx.scene.image.Image; import javafx.scene.layout.GridPane; import javafx.scene.layout.Priority; import javafx.stage.Stage; imp...
3,156
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
ByteUtil.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/util/ByteUtil.java
package com.youthlin.jlu.drcom.util; import java.math.BigInteger; import java.util.Random; /** * Created by lin on 2017-01-11-011. * 字节数组工具, byte 数字当作无符号数处理. 因此 toInt(0xff) 将得到 255. */ @SuppressWarnings("WeakerAccess") public class ByteUtil { private static final Random random = new Random(System.currentTimeMi...
5,861
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
IPUtil.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/util/IPUtil.java
package com.youthlin.jlu.drcom.util; import com.youthlin.jlu.drcom.bean.HostInfo; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.net.InetAddress; import java.net.InterfaceAddress; import java.net.NetworkInterface; import java.net.SocketException; import java.util.ArrayList; import java.util.Enum...
5,308
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
Constants.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/util/Constants.java
package com.youthlin.jlu.drcom.util; import java.io.File; /** * Created by lin on 2017-01-09-009. * 常量 */ @SuppressWarnings("WeakerAccess") public class Constants { public static final String LOGO_URL = "/dr-logo.png"; public static final String LOADING_URL = "/loading.gif"; public static final String ...
1,716
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
Browser.java
/FileExtraction/Java_unseen/drcoms_jlu-drcom-client/jlu-drcom-java/src/main/java/com/youthlin/jlu/drcom/util/Browser.java
package com.youthlin.jlu.drcom.util; import com.youthlin.jlu.drcom.Drcom; import javafx.scene.Scene; import javafx.scene.control.TextField; import javafx.scene.input.KeyCode; import javafx.scene.layout.BorderPane; import javafx.scene.web.WebEngine; import javafx.scene.web.WebView; import javafx.stage.Stage; /** * Cr...
3,594
Java
.java
drcoms/jlu-drcom-client
142
1
9
2014-10-20T16:26:48Z
2020-09-01T13:48:47Z
FunctionUnitTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/test/java/org/flyve/inventory/FunctionUnitTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,153
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
CryptoUtil.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/CryptoUtil.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,811
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
InventoryTask.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/InventoryTask.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
12,941
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
InventoryLog.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/InventoryLog.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
3,282
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
FlyveException.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/FlyveException.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
1,638
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
CommonErrorType.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/CommonErrorType.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
10,307
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
GenericFileProvider.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/GenericFileProvider.java
package org.flyve.inventory; import androidx.core.content.FileProvider; public class GenericFileProvider extends FileProvider { }
135
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Utils.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/Utils.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
22,367
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
CategoryValue.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/CategoryValue.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,614
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Memory.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Memory.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
6,922
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Envs.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Envs.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,865
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Networks.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Networks.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
15,993
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Videos.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Videos.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,328
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Sensors.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Sensors.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
5,795
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Battery.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Battery.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
8,516
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Modems.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Modems.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,848
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Processes.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Processes.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
1,494
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
PhoneStatus.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/PhoneStatus.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,936
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Storage.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Storage.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
6,080
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Bios.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Bios.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
11,512
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Hardware.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Hardware.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
12,102
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Drives.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Drives.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
7,849
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
User.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/User.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,800
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Usb.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Usb.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
5,569
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Bluetooth.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Bluetooth.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,796
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Software.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Software.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
9,953
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Controllers.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Controllers.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
5,023
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Jvm.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Jvm.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
6,646
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Inputs.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Inputs.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
5,086
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Cpus.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Cpus.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
10,396
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Category.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Category.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
10,701
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Cameras.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Cameras.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU General...
23,781
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Simcards.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Simcards.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
11,899
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
LocationProviders.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/LocationProviders.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
3,821
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
OperatingSystem.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/OperatingSystem.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
13,494
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
StringUtils.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/StringUtils.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,047
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Categories.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/categories/Categories.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
5,057
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
UsbProperty.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/usbManager/UsbProperty.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,213
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
Validation.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/usbManager/Validation.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
1,809
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
SysBusUsbDevice.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/usbManager/SysBusUsbDevice.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
6,121
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
SysBusUsbDeviceFactory.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/usbManager/SysBusUsbDeviceFactory.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
7,161
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
SysBusUsbManager.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/main/java/org/flyve/inventory/usbManager/SysBusUsbManager.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,511
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
OperatingSystemTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/OperatingSystemTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,280
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
MemoryTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/MemoryTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,070
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
InventoryTaskTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/InventoryTaskTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
3,146
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
BluetoothTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/BluetoothTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,199
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
CamerasTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/CamerasTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
5,590
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
BiosTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/BiosTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
3,090
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
DrivesTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/DrivesTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,386
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
UserTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/UserTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
1,725
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
ControllersTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/ControllersTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
1,842
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
InputsTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/InputsTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
1,964
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
NetworksTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/NetworksTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
3,765
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
CpusTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/CpusTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
3,182
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
ModemsTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/ModemsTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
1,745
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
UsbTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/UsbTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,560
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
CreateFileTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/CreateFileTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
3,107
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
SimcardsTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/SimcardsTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
5,933
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
SoftwareTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/SoftwareTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
4,906
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
HardwareTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/HardwareTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,817
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
BatteryTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/BatteryTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
2,431
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z
VideosTest.java
/FileExtraction/Java_unseen/glpi-project_android-inventory-library/inventory/src/androidTest/java/org/flyve/inventory/VideosTest.java
/** * LICENSE * * This file is part of Flyve MDM Inventory Library for Android. * * Inventory Library for Android is a subproject of Flyve MDM. * Flyve MDM is a mobile device management software. * * Flyve MDM is free software: you can redistribute it and/or * modify it under the terms of the GNU Genera...
1,759
Java
.java
glpi-project/android-inventory-library
16
22
2
2017-06-19T07:14:12Z
2024-03-14T17:22:46Z