Phone app (based on Ali's Control for iotcloud benchmark) to control alarm in the...
authorrtrimana <rtrimana@uci.edu>
Fri, 29 Sep 2017 18:15:21 +0000 (11:15 -0700)
committerrtrimana <rtrimana@uci.edu>
Fri, 29 Sep 2017 18:15:21 +0000 (11:15 -0700)
commit4c116198a80b62ddc11720ef80daa99850facaee
treec45f5a457f57f8bb150f3412008103550ad71ecf
parent1bac443ac1ed2689852ef846c6332865374e2b36
Phone app (based on Ali's Control for iotcloud benchmark) to control alarm in the fourth benchmark
63 files changed:
benchmarks/other/PhoneInterface/Control/.gitignore [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/.idea/compiler.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/.idea/copyright/profiles_settings.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/.idea/gradle.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/.idea/misc.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/.idea/modules.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/.idea/runConfigurations.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/.gitignore [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/build.gradle [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/libs/core-1.56.0.0.jar [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/proguard-rules.pro [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/androidTest/java/com/example/ali/control/ApplicationTest.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/AndroidManifest.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/com/example/ali/control/MainActivity.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/Abort.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/ArbitrationRound.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/CloudComm.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/Commit.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/CommitPart.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/Entry.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/IoTString.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/KeyValue.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/LastMessage.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/Liveness.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/LocalComm.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/NewKey.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/Pair.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/PendingTransaction.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/RejectedMessage.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/ServerException.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/Slot.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/SlotBuffer.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/SlotIndexer.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/Table.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/TableStatus.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/ThreeTuple.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/TimingSingleton.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/Transaction.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/TransactionPart.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/java/iotcloud/TransactionStatus.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/layout/activity_main.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/layout/content_main.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/menu/menu_main.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/mipmap-hdpi/ic_launcher.png [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/mipmap-mdpi/ic_launcher.png [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/mipmap-xhdpi/ic_launcher.png [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/mipmap-xxhdpi/ic_launcher.png [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/values-v21/styles.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/values-w820dp/dimens.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/values/colors.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/values/dimens.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/values/strings.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/main/res/values/styles.xml [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/app/src/test/java/com/example/ali/control/ExampleUnitTest.java [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/build.gradle [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/gradle.properties [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/gradle/wrapper/gradle-wrapper.jar [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/gradle/wrapper/gradle-wrapper.properties [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/gradlew [new file with mode: 0755]
benchmarks/other/PhoneInterface/Control/gradlew.bat [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/java_pid6346.hprof [new file with mode: 0644]
benchmarks/other/PhoneInterface/Control/settings.gradle [new file with mode: 0644]