├── .gitignore ├── README.md ├── datasets ├── .DS_Store └── README.md └── test_harness ├── README.md ├── check_traffic.py ├── processDB.py ├── runPacketCapture.py └── separate_app_list.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pickle -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUChimpsLab/MobiPurpose/HEAD/README.md -------------------------------------------------------------------------------- /datasets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUChimpsLab/MobiPurpose/HEAD/datasets/.DS_Store -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUChimpsLab/MobiPurpose/HEAD/datasets/README.md -------------------------------------------------------------------------------- /test_harness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUChimpsLab/MobiPurpose/HEAD/test_harness/README.md -------------------------------------------------------------------------------- /test_harness/check_traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUChimpsLab/MobiPurpose/HEAD/test_harness/check_traffic.py -------------------------------------------------------------------------------- /test_harness/processDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUChimpsLab/MobiPurpose/HEAD/test_harness/processDB.py -------------------------------------------------------------------------------- /test_harness/runPacketCapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUChimpsLab/MobiPurpose/HEAD/test_harness/runPacketCapture.py -------------------------------------------------------------------------------- /test_harness/separate_app_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMUChimpsLab/MobiPurpose/HEAD/test_harness/separate_app_list.py --------------------------------------------------------------------------------