├── .gitignore ├── LICENSE ├── README.md ├── apps ├── .gitignore ├── README.md ├── baseline-benchmarks │ ├── 100game │ │ ├── CMakeLists.txt │ │ ├── benchmark_common.cc │ │ ├── benchmark_common.h │ │ ├── game-redis.cc │ │ └── manage-baseline-100game-servers.py │ └── keyvaluestore │ │ ├── .gitignore │ │ ├── generate-fill-protocol.pl │ │ ├── manage-baseline-servers.py │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── edu │ │ └── washington │ │ └── cs │ │ └── diamond │ │ ├── Client.java │ │ ├── KeyValueServer.java │ │ ├── RetwisClient.java │ │ ├── RetwisServer.java │ │ └── Utils.java ├── benchmarks │ ├── CMakeLists.txt │ ├── benchmark_common.cc │ ├── benchmark_common.h │ ├── benchmarkclient.cc │ ├── caching.cc │ ├── debug.cc │ ├── docc.cc │ ├── game.cc │ ├── notification_publisher.cc │ ├── notification_subscriber.cc │ ├── oldcaching.cc │ ├── scalability.cc │ └── settest.cc ├── chat │ ├── AndroidChatBaseline │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── androidchatbaseline │ │ │ │ │ ├── ChatActivity.java │ │ │ │ │ ├── LoginActivity.java │ │ │ │ │ ├── LoginDialogFragment.java │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ ├── activity_chat.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── dialog_login.xml │ │ │ │ ├── menu │ │ │ │ └── main.xml │ │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── AndroidChatBaselineBenchmark │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── androidchatbaselinebenchmark │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── menu │ │ │ │ └── main.xml │ │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── BaselineChatClient │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── libs │ │ │ └── gson-2.3.1.jar │ │ └── src │ │ │ └── BaselineChatClient.java │ ├── BaselineChatServer │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── libs │ │ │ ├── commons-pool2-2.0.jar │ │ │ ├── gson-2.3.1.jar │ │ │ ├── jedis-2.4.2.jar │ │ │ └── jetty-all-9.3.7.v20160115-uber.jar │ │ ├── make.pl │ │ ├── manage-baseline-chat-servers.py │ │ ├── run-server.pl │ │ └── src │ │ │ ├── BaselineChatServer.java │ │ │ └── MANIFEST.MF │ ├── DesktopChat │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ └── src │ │ │ └── DesktopChatClient.java │ ├── DiamondChat-old │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── libs │ │ │ └── .gitignore │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ ├── activity_chat.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── dialog_login.xml │ │ │ ├── menu │ │ │ │ └── main.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── src │ │ │ └── dimessage │ │ │ ├── ChatActivity.java │ │ │ ├── LoginActivity.java │ │ │ ├── LoginDialogFragment.java │ │ │ └── MainActivity.java │ ├── DiamondChat │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── lint.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── diamondchat │ │ │ │ │ ├── ChatActivity.java │ │ │ │ │ ├── DiamondCheckBox.java │ │ │ │ │ ├── DiamondTextView.java │ │ │ │ │ ├── LoginActivity.java │ │ │ │ │ ├── LoginDialogFragment.java │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ ├── activity_chat.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── dialog_login.xml │ │ │ │ ├── menu │ │ │ │ └── main.xml │ │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── DiamondChatBenchmark │ │ ├── .gitignore │ │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── diamondchatbenchmark │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── main.xml │ │ │ ├── values-v11 │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── demo │ ├── CMakeLists.txt │ └── demo.cc ├── notes │ ├── NotesReactive │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── gen │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ └── v7 │ │ │ │ │ └── appcompat │ │ │ │ │ └── R.java │ │ │ └── ariadnanorberg │ │ │ │ └── notesreactive │ │ │ │ ├── BuildConfig.java │ │ │ │ └── R.java │ │ ├── ic_launcher-web.png │ │ ├── libs │ │ │ └── bolts-tasks-1.4.0.jar │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_menu_add.png │ │ │ │ └── ic_menu_refresh.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ ├── activity_edit_note.xml │ │ │ │ ├── activity_login.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_sign_up.xml │ │ │ │ ├── add_note.xml │ │ │ │ ├── list_item_layout.xml │ │ │ │ └── shownotes.xml │ │ │ ├── menu │ │ │ │ ├── edit_note.xml │ │ │ │ ├── login.xml │ │ │ │ ├── main.xml │ │ │ │ └── sign_up.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── src │ │ │ └── ariadnanorberg │ │ │ └── notesreactive │ │ │ ├── EditNoteActivity.java │ │ │ ├── LoginActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── Note.java │ │ │ ├── ShowNotes.java │ │ │ └── SignUpActivity.java │ └── NotesUnreactive │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── app.js~ │ │ ├── gen │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ └── R.java │ │ └── ariadnanorberg │ │ │ └── notes1 │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ │ ├── ic_launcher-web.png │ │ ├── libs │ │ ├── Parse-1.13.0.jar │ │ ├── android-support-v4.jar │ │ ├── android-support-v7-appcompat.jar │ │ └── bolts-tasks-1.4.0.jar │ │ ├── lint.xml │ │ ├── npm-debug.log │ │ ├── package.json~ │ │ ├── parse │ │ ├── .ebextensions │ │ │ └── app.config │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app.json │ │ ├── azuredeploy.json │ │ ├── cloud │ │ │ └── main.js │ │ ├── index.js │ │ ├── jsconfig.json │ │ ├── package.json │ │ └── scalingo.json │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_menu_add.png │ │ │ └── ic_menu_refresh.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_edit_note.xml │ │ │ ├── activity_login.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_sign_up.xml │ │ │ ├── add_note.xml │ │ │ ├── list_item_layout.xml │ │ │ └── shownotes.xml │ │ ├── menu │ │ │ ├── edit_note.xml │ │ │ ├── login.xml │ │ │ ├── main.xml │ │ │ └── sign_up.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── src │ │ └── ariadnanorberg │ │ └── notes1 │ │ ├── EditNoteActivity.java │ │ ├── LoginActivity.java │ │ ├── MainActivity.java │ │ ├── Note.java │ │ ├── ShowNotes.java │ │ └── SignUpActivity.java ├── parse │ ├── DiamondParse │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── nl35 │ │ │ │ │ └── diamondparse │ │ │ │ │ └── ApplicationTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── nl35 │ │ │ │ │ │ └── diamondparse │ │ │ │ │ │ ├── FindCallback.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── ParseException.java │ │ │ │ │ │ ├── ParseObject.java │ │ │ │ │ │ ├── ParseQuery.java │ │ │ │ │ │ └── SaveCallback.java │ │ │ │ └── res │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── nl35 │ │ │ │ └── diamondparse │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── Parse-Starter-Project-1.13.0 │ │ ├── .gitignore │ │ ├── ParseTest │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── parse │ │ │ │ └── starter │ │ │ │ ├── MainActivity.java │ │ │ │ └── StarterApplication.java │ │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── pyscrabble │ ├── README.md │ ├── pyscrabble-1.6.2 │ │ ├── .gitignore │ │ ├── CHANGELOG.txt │ │ ├── LICENSE.txt │ │ ├── PKG-INFO │ │ ├── README.txt │ │ ├── db_upgrade.py │ │ ├── pyscrabble-main.py │ │ ├── pyscrabble │ │ │ ├── __init__.py │ │ │ ├── audit.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ └── helper.py │ │ │ ├── constants.py │ │ │ ├── db.py │ │ │ ├── dist.py │ │ │ ├── exceptions.py │ │ │ ├── game │ │ │ │ ├── __init__.py │ │ │ │ ├── game.py │ │ │ │ ├── pieces.py │ │ │ │ ├── player.py │ │ │ │ └── rank.py │ │ │ ├── gtkconstants.py │ │ │ ├── gtkutil.py │ │ │ ├── gui │ │ │ │ ├── __init__.py │ │ │ │ ├── chat.py │ │ │ │ ├── game.py │ │ │ │ ├── info.py │ │ │ │ ├── login.py │ │ │ │ ├── main.py │ │ │ │ ├── message.py │ │ │ │ ├── options.py │ │ │ │ ├── pieces.py │ │ │ │ ├── register.py │ │ │ │ └── tip.py │ │ │ ├── lookup.py │ │ │ ├── manager.py │ │ │ ├── net │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── interfaces.py │ │ │ │ ├── server.py │ │ │ │ └── site.py │ │ │ ├── serialize.py │ │ │ └── util.py │ │ ├── resources │ │ │ ├── config │ │ │ │ ├── ranks.cfg │ │ │ │ └── server_console.cfg │ │ │ ├── dict │ │ │ │ ├── de │ │ │ │ │ ├── de.dict │ │ │ │ │ ├── missing-words-1.5.0.txt │ │ │ │ │ └── missing-words-german-1.4.1.txt │ │ │ │ ├── en │ │ │ │ │ └── fullable.lst │ │ │ │ ├── fi │ │ │ │ │ └── dict_fi.txt │ │ │ │ ├── fr │ │ │ │ │ └── ods4.txt │ │ │ │ └── sr │ │ │ │ │ └── sr.dict │ │ │ ├── images │ │ │ │ ├── py.ico │ │ │ │ ├── py_old.ico │ │ │ │ ├── pyscrabble.xpm │ │ │ │ └── send-im.png │ │ │ ├── letters │ │ │ │ ├── de │ │ │ │ │ └── letters.txt │ │ │ │ ├── en │ │ │ │ │ └── letters.txt │ │ │ │ ├── fi │ │ │ │ │ └── letters.txt │ │ │ │ ├── fr │ │ │ │ │ └── letters.txt │ │ │ │ └── sr │ │ │ │ │ └── letters.txt │ │ │ ├── locale │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ └── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── pyscrabble.mo │ │ │ ├── sounds │ │ │ │ └── notif.wav │ │ │ └── web │ │ │ │ ├── index.css │ │ │ │ ├── index.html │ │ │ │ └── user_admin.html │ │ ├── server_console.py │ │ └── setup.py │ ├── pyscrabble-hatchet-diamond │ │ ├── .gitignore │ │ ├── CHANGELOG.txt │ │ ├── LICENSE.txt │ │ ├── PKG-INFO │ │ ├── README.txt │ │ ├── pyscrabble-main.py │ │ ├── pyscrabble │ │ │ ├── __init__.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ └── helper.py │ │ │ ├── constants.py │ │ │ ├── dist.py │ │ │ ├── exceptions.py │ │ │ ├── game │ │ │ │ ├── __init__.py │ │ │ │ ├── game.py │ │ │ │ ├── pieces.py │ │ │ │ ├── player.py │ │ │ │ └── rank.py │ │ │ ├── gtkconstants.py │ │ │ ├── gtkutil.py │ │ │ ├── gui │ │ │ │ ├── __init__.py │ │ │ │ ├── chat.py │ │ │ │ ├── game.py │ │ │ │ ├── info.py │ │ │ │ ├── login.py │ │ │ │ ├── main.py │ │ │ │ ├── options.py │ │ │ │ ├── pieces.py │ │ │ │ ├── register.py │ │ │ │ └── tip.py │ │ │ ├── lookup.py │ │ │ ├── manager.py │ │ │ ├── serialize.py │ │ │ └── util.py │ │ ├── resources │ │ │ ├── config │ │ │ │ ├── ranks.cfg │ │ │ │ └── server_console.cfg │ │ │ ├── dict │ │ │ │ ├── de │ │ │ │ │ ├── de.dict │ │ │ │ │ ├── missing-words-1.5.0.txt │ │ │ │ │ └── missing-words-german-1.4.1.txt │ │ │ │ ├── en │ │ │ │ │ └── fullable.lst │ │ │ │ ├── fi │ │ │ │ │ └── dict_fi.txt │ │ │ │ ├── fr │ │ │ │ │ └── ods4.txt │ │ │ │ └── sr │ │ │ │ │ └── sr.dict │ │ │ ├── images │ │ │ │ ├── py.ico │ │ │ │ ├── py_old.ico │ │ │ │ ├── pyscrabble.xpm │ │ │ │ └── send-im.png │ │ │ ├── letters │ │ │ │ ├── de │ │ │ │ │ └── letters.txt │ │ │ │ ├── en │ │ │ │ │ └── letters.txt │ │ │ │ ├── fi │ │ │ │ │ └── letters.txt │ │ │ │ ├── fr │ │ │ │ │ └── letters.txt │ │ │ │ └── sr │ │ │ │ │ └── letters.txt │ │ │ ├── locale │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ └── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── pyscrabble.mo │ │ │ ├── sounds │ │ │ │ └── notif.wav │ │ │ └── web │ │ │ │ ├── index.css │ │ │ │ ├── index.html │ │ │ │ └── user_admin.html │ │ ├── server_console.py │ │ └── setup.py │ ├── pyscrabble-hatchet-original │ │ ├── .gitignore │ │ ├── CHANGELOG.txt │ │ ├── LICENSE.txt │ │ ├── PKG-INFO │ │ ├── README.txt │ │ ├── db_upgrade.py │ │ ├── pyscrabble-main.py │ │ ├── pyscrabble │ │ │ ├── __init__.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ └── helper.py │ │ │ ├── constants.py │ │ │ ├── db.py │ │ │ ├── dist.py │ │ │ ├── exceptions.py │ │ │ ├── game │ │ │ │ ├── __init__.py │ │ │ │ ├── game.py │ │ │ │ ├── pieces.py │ │ │ │ ├── player.py │ │ │ │ └── rank.py │ │ │ ├── gtkconstants.py │ │ │ ├── gtkutil.py │ │ │ ├── gui │ │ │ │ ├── __init__.py │ │ │ │ ├── chat.py │ │ │ │ ├── game.py │ │ │ │ ├── info.py │ │ │ │ ├── login.py │ │ │ │ ├── main.py │ │ │ │ ├── options.py │ │ │ │ ├── pieces.py │ │ │ │ ├── register.py │ │ │ │ └── tip.py │ │ │ ├── lookup.py │ │ │ ├── manager.py │ │ │ ├── net │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── interfaces.py │ │ │ │ ├── server.py │ │ │ │ └── site.py │ │ │ ├── serialize.py │ │ │ └── util.py │ │ ├── resources │ │ │ ├── config │ │ │ │ ├── ranks.cfg │ │ │ │ └── server_console.cfg │ │ │ ├── dict │ │ │ │ ├── de │ │ │ │ │ ├── de.dict │ │ │ │ │ ├── missing-words-1.5.0.txt │ │ │ │ │ └── missing-words-german-1.4.1.txt │ │ │ │ ├── en │ │ │ │ │ └── fullable.lst │ │ │ │ ├── fi │ │ │ │ │ └── dict_fi.txt │ │ │ │ ├── fr │ │ │ │ │ └── ods4.txt │ │ │ │ └── sr │ │ │ │ │ └── sr.dict │ │ │ ├── images │ │ │ │ ├── py.ico │ │ │ │ ├── py_old.ico │ │ │ │ ├── pyscrabble.xpm │ │ │ │ └── send-im.png │ │ │ ├── letters │ │ │ │ ├── de │ │ │ │ │ └── letters.txt │ │ │ │ ├── en │ │ │ │ │ └── letters.txt │ │ │ │ ├── fi │ │ │ │ │ └── letters.txt │ │ │ │ ├── fr │ │ │ │ │ └── letters.txt │ │ │ │ └── sr │ │ │ │ │ └── letters.txt │ │ │ ├── locale │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── pyscrabble.mo │ │ │ │ └── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── pyscrabble.mo │ │ │ ├── sounds │ │ │ │ └── notif.wav │ │ │ └── web │ │ │ │ ├── index.css │ │ │ │ ├── index.html │ │ │ │ └── user_admin.html │ │ ├── server_console.py │ │ └── setup.py │ └── pyscrabble-hatchet │ │ ├── .gitignore │ │ ├── CHANGELOG.txt │ │ ├── LICENSE.txt │ │ ├── PKG-INFO │ │ ├── README.txt │ │ ├── pyscrabble-main.py │ │ ├── pyscrabble │ │ ├── __init__.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ └── helper.py │ │ ├── constants.py │ │ ├── db.py │ │ ├── dist.py │ │ ├── exceptions.py │ │ ├── game │ │ │ ├── __init__.py │ │ │ ├── game.py │ │ │ ├── pieces.py │ │ │ ├── player.py │ │ │ └── rank.py │ │ ├── gtkconstants.py │ │ ├── gtkutil.py │ │ ├── gui │ │ │ ├── __init__.py │ │ │ ├── chat.py │ │ │ ├── game.py │ │ │ ├── info.py │ │ │ ├── login.py │ │ │ ├── main.py │ │ │ ├── options.py │ │ │ ├── pieces.py │ │ │ ├── register.py │ │ │ └── tip.py │ │ ├── lookup.py │ │ ├── manager.py │ │ ├── net │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── server.py │ │ │ └── site.py │ │ ├── serialize.py │ │ └── util.py │ │ ├── resources │ │ ├── config │ │ │ ├── ranks.cfg │ │ │ └── server_console.cfg │ │ ├── dict │ │ │ ├── de │ │ │ │ ├── de.dict │ │ │ │ ├── missing-words-1.5.0.txt │ │ │ │ └── missing-words-german-1.4.1.txt │ │ │ ├── en │ │ │ │ └── fullable.lst │ │ │ ├── fi │ │ │ │ └── dict_fi.txt │ │ │ ├── fr │ │ │ │ └── ods4.txt │ │ │ └── sr │ │ │ │ └── sr.dict │ │ ├── images │ │ │ ├── py.ico │ │ │ ├── py_old.ico │ │ │ ├── pyscrabble.xpm │ │ │ └── send-im.png │ │ ├── letters │ │ │ ├── de │ │ │ │ └── letters.txt │ │ │ ├── en │ │ │ │ └── letters.txt │ │ │ ├── fi │ │ │ │ └── letters.txt │ │ │ ├── fr │ │ │ │ └── letters.txt │ │ │ └── sr │ │ │ │ └── letters.txt │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── pyscrabble.mo │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── pyscrabble.mo │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── pyscrabble.mo │ │ │ └── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ └── pyscrabble.mo │ │ ├── sounds │ │ │ └── notif.wav │ │ └── web │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ └── user_admin.html │ │ ├── server_console.py │ │ └── setup.py ├── simplegame │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── game.cc │ ├── python │ │ └── game.py │ └── redis-cpp │ │ ├── CMakeLists.txt │ │ └── game-redis.cc ├── tapir-benchmarks │ ├── CMakeLists.txt │ ├── benchClient.cc │ ├── retwisClient.cc │ └── terminalClient.cc ├── test-apps │ ├── DiamondAndroidTest │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── diamondandroidtest │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── menu │ │ │ │ └── main.xml │ │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── DiamondJavaTest │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── libs │ │ │ └── .gitignore │ │ └── src │ │ │ └── Main.java │ ├── cpp-reactive-test │ │ ├── CMakeLists.txt │ │ ├── client.cc │ │ ├── deregistertestclient.cc │ │ ├── publisher.cc │ │ ├── unsubscribetestclient.cc │ │ └── unsubscribetestpublisher.cc │ ├── java-reactive-test │ │ ├── .gitignore │ │ ├── Client.java │ │ ├── Makefile │ │ ├── Publisher.java │ │ ├── run-client.pl │ │ └── run-publisher.pl │ └── python-reactive-test │ │ ├── client.py │ │ └── publisher.py └── twitter │ ├── TwitterBackend │ ├── .gitignore │ ├── .project │ ├── libs │ │ ├── commons-codec-1.10.jar │ │ ├── commons-pool2-2.0.jar │ │ ├── gson-2.3.1.jar │ │ ├── httpclient-4.5.jar │ │ ├── httpcore-4.4.1.jar │ │ ├── javax.json-api-1.0.jar │ │ └── jedis-2.4.2.jar │ └── src │ │ ├── jedistwitter │ │ └── JedisTwitter.java │ │ ├── main │ │ └── Main.java │ │ └── utils │ │ └── Utils.java │ ├── backend-diamond │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── libs │ │ ├── commons-codec-1.10.jar │ │ ├── commons-pool2-2.0.jar │ │ ├── gson-2.3.1.jar │ │ ├── httpclient-4.5.jar │ │ ├── httpcore-4.4.1.jar │ │ ├── javax.json-api-1.0.jar │ │ └── jedis-2.4.2.jar │ └── src │ │ ├── diamond │ │ ├── DiamondTweet.java │ │ └── DiamondUser.java │ │ ├── jedistwitter │ │ └── JedisTwitter.java │ │ ├── main │ │ └── Main.java │ │ └── utils │ │ └── Utils.java │ ├── tweetero │ ├── Classes │ │ ├── AboutController.h │ │ ├── AboutController.m │ │ ├── DirectMessagesController.h │ │ ├── DirectMessagesController.m │ │ ├── ImageLoader.h │ │ ├── ImageLoader.m │ │ ├── ImagePreview.h │ │ ├── ImagePreview.m │ │ ├── ImageViewController.h │ │ ├── ImageViewController.m │ │ ├── MGConnectionWrap.h │ │ ├── MGConnectionWrap.m │ │ ├── MessageListController.h │ │ ├── MessageListController.m │ │ ├── MessageUploader.h │ │ ├── MessageUploader.m │ │ ├── MessageViewController.h │ │ ├── MessageViewController.m │ │ ├── NavigationRotateController.h │ │ ├── NavigationRotateController.m │ │ ├── NewMessageController.h │ │ ├── NewMessageController.m │ │ ├── RepliesListController.h │ │ ├── RepliesListController.m │ │ ├── SelectImageSource.h │ │ ├── SelectImageSource.m │ │ ├── TapScrollView.h │ │ ├── TapScrollView.m │ │ ├── TweetPlayer.h │ │ ├── TweetPlayer.m │ │ ├── TweetQueue.h │ │ ├── TweetQueue.m │ │ ├── TweetQueueController.h │ │ ├── TweetQueueController.m │ │ ├── TweetterAppDelegate.h │ │ ├── TweetterAppDelegate.m │ │ ├── UserInfo.h │ │ ├── UserInfo.m │ │ ├── UserMessageListController.h │ │ ├── UserMessageListController.m │ │ ├── WebViewController.h │ │ ├── WebViewController.m │ │ ├── yFrogImageDownoader.h │ │ ├── yFrogImageDownoader.m │ │ ├── yFrogImageUploader.h │ │ └── yFrogImageUploader.m │ ├── English.lproj │ │ ├── About.xib │ │ ├── ImageView.xib │ │ ├── Localizable.strings │ │ ├── Login.xib │ │ ├── MainWindow.xib │ │ ├── MessageView.xib │ │ ├── NewMessage.xib │ │ ├── PostImage.xib │ │ ├── SelectImageSource.xib │ │ ├── SettingsView.xib │ │ ├── TweetQueue.xib │ │ ├── UserInfo.xib │ │ ├── UserMessageList.xib │ │ └── WebView.xib │ ├── Frog.tiff │ ├── HomeViewController.h │ ├── HomeViewController.m │ ├── Info.plist │ ├── LICENSE.txt │ ├── LocationManager.h │ ├── LocationManager.m │ ├── LoginController.h │ ├── LoginController.m │ ├── MGTwitterEngine-new │ │ ├── FollowersController.h │ │ ├── FollowersController.m │ │ ├── MGTwitterEngine.h │ │ ├── MGTwitterEngine.m │ │ ├── MGTwitterEngineDelegate.h │ │ ├── MGTwitterEngineGlobalHeader.h │ │ ├── MGTwitterEngine_Prefix.pch │ │ ├── MGTwitterHTTPURLConnection.h │ │ ├── MGTwitterHTTPURLConnection.m │ │ ├── MGTwitterLibXMLParser.h │ │ ├── MGTwitterLibXMLParser.m │ │ ├── MGTwitterMessagesLibXMLParser.h │ │ ├── MGTwitterMessagesLibXMLParser.m │ │ ├── MGTwitterMessagesParser.h │ │ ├── MGTwitterMessagesParser.m │ │ ├── MGTwitterMessagesYAJLParser.h │ │ ├── MGTwitterMessagesYAJLParser.m │ │ ├── MGTwitterMiscLibXMLParser.h │ │ ├── MGTwitterMiscLibXMLParser.m │ │ ├── MGTwitterMiscParser.h │ │ ├── MGTwitterMiscParser.m │ │ ├── MGTwitterMiscYAJLParser.h │ │ ├── MGTwitterMiscYAJLParser.m │ │ ├── MGTwitterParserDelegate.h │ │ ├── MGTwitterRequestTypes.h │ │ ├── MGTwitterSearchYAJLParser.h │ │ ├── MGTwitterSearchYAJLParser.m │ │ ├── MGTwitterSocialGraphLibXMLParser.h │ │ ├── MGTwitterSocialGraphLibXMLParser.m │ │ ├── MGTwitterSocialGraphParser.h │ │ ├── MGTwitterSocialGraphParser.m │ │ ├── MGTwitterStatusesLibXMLParser.h │ │ ├── MGTwitterStatusesLibXMLParser.m │ │ ├── MGTwitterStatusesParser.h │ │ ├── MGTwitterStatusesParser.m │ │ ├── MGTwitterStatusesYAJLParser.h │ │ ├── MGTwitterStatusesYAJLParser.m │ │ ├── MGTwitterTouchJSONParser.h │ │ ├── MGTwitterTouchJSONParser.m │ │ ├── MGTwitterUserListsParser.h │ │ ├── MGTwitterUserListsParser.m │ │ ├── MGTwitterUsersLibXMLParser.h │ │ ├── MGTwitterUsersLibXMLParser.m │ │ ├── MGTwitterUsersParser.h │ │ ├── MGTwitterUsersParser.m │ │ ├── MGTwitterUsersYAJLParser.h │ │ ├── MGTwitterUsersYAJLParser.m │ │ ├── MGTwitterXMLParser.h │ │ ├── MGTwitterXMLParser.m │ │ ├── MGTwitterYAJLParser.h │ │ ├── MGTwitterYAJLParser.m │ │ ├── NSData+Base64.h │ │ ├── NSData+Base64.m │ │ ├── NSString+UUID.h │ │ └── NSString+UUID.m │ ├── MGTwitterEngine-old │ │ ├── FollowersController.h │ │ ├── FollowersController.m │ │ ├── LICENSE.txt │ │ ├── MGTwitterEngine.h │ │ ├── MGTwitterEngine.m │ │ ├── MGTwitterEngineDelegate.h │ │ ├── MGTwitterEngineGlobalHeader.h │ │ ├── MGTwitterHTTPURLConnection.h │ │ ├── MGTwitterHTTPURLConnection.m │ │ ├── MGTwitterMessagesParser.h │ │ ├── MGTwitterMessagesParser.m │ │ ├── MGTwitterMiscParser.h │ │ ├── MGTwitterMiscParser.m │ │ ├── MGTwitterParserDelegate.h │ │ ├── MGTwitterRequestTypes.h │ │ ├── MGTwitterStatusesParser.h │ │ ├── MGTwitterStatusesParser.m │ │ ├── MGTwitterUsersParser.h │ │ ├── MGTwitterUsersParser.m │ │ ├── MGTwitterXMLParser.h │ │ ├── MGTwitterXMLParser.m │ │ ├── NSData+Base64.h │ │ ├── NSData+Base64.m │ │ ├── NSString+UUID.h │ │ └── NSString+UUID.m │ ├── MGTwitterEngine │ │ ├── FollowersController.h │ │ ├── FollowersController.m │ │ ├── LICENSE.txt │ │ ├── MGTwitterEngine.h │ │ ├── MGTwitterEngine.m │ │ ├── MGTwitterEngineDelegate.h │ │ ├── MGTwitterEngineGlobalHeader.h │ │ ├── MGTwitterHTTPURLConnection.h │ │ ├── MGTwitterHTTPURLConnection.m │ │ ├── MGTwitterMessagesParser.h │ │ ├── MGTwitterMessagesParser.m │ │ ├── MGTwitterMessagesYAJLParser.h │ │ ├── MGTwitterMessagesYAJLParser.m │ │ ├── MGTwitterMiscParser.h │ │ ├── MGTwitterMiscParser.m │ │ ├── MGTwitterMiscYAJLParser.h │ │ ├── MGTwitterMiscYAJLParser.m │ │ ├── MGTwitterParserDelegate.h │ │ ├── MGTwitterRequestTypes.h │ │ ├── MGTwitterSearchYAJLParser.h │ │ ├── MGTwitterSearchYAJLParser.m │ │ ├── MGTwitterStatusesParser.h │ │ ├── MGTwitterStatusesParser.m │ │ ├── MGTwitterStatusesYAJLParser.h │ │ ├── MGTwitterStatusesYAJLParser.m │ │ ├── MGTwitterUsersParser.h │ │ ├── MGTwitterUsersParser.m │ │ ├── MGTwitterUsersYAJLParser.h │ │ ├── MGTwitterUsersYAJLParser.m │ │ ├── MGTwitterXMLParser.h │ │ ├── MGTwitterXMLParser.m │ │ ├── MGTwitterYAJLParser.h │ │ ├── MGTwitterYAJLParser.m │ │ ├── NSData+Base64.h │ │ ├── NSData+Base64.m │ │ ├── NSString+UUID.h │ │ └── NSString+UUID.m │ ├── Resource │ │ └── Images │ │ │ ├── About.tiff │ │ │ ├── Archive.zip │ │ │ ├── Archive │ │ │ ├── Messages.tiff │ │ │ ├── home.tif │ │ │ ├── replies.tif │ │ │ ├── settings.tif │ │ │ ├── yFrogTabIcon.tiff │ │ │ └── yfrog.tif │ │ │ ├── HomeTabIcon.tiff │ │ │ ├── Messages.tiff │ │ │ ├── MovieIcon.tif │ │ │ ├── Queue.tiff │ │ │ ├── Replies.tiff │ │ │ ├── SettingsTabIcon.tiff │ │ │ ├── camera.tiff │ │ │ ├── followers.tiff │ │ │ ├── following.tiff │ │ │ ├── library.tiff │ │ │ ├── map.tiff │ │ │ ├── remove.tiff │ │ │ ├── settings.psd │ │ │ ├── trash.tiff │ │ │ ├── trashHighlighted.tiff │ │ │ ├── tweetsnap2.png │ │ │ ├── yFrogTabIcon.tiff │ │ │ ├── yfrog.png │ │ │ ├── yfrog.tiff │ │ │ ├── yfrog1.png │ │ │ └── yfrog_icon.png │ ├── SettingsController.h │ ├── SettingsController.m │ ├── Tweetero.xcodeproj │ │ └── project.pbxproj │ ├── Tweetter_Prefix.pch │ ├── TwitEditorController.h │ ├── TwitEditorController.m │ ├── TwitterConnectionProtocol.h │ ├── defaults.plist │ ├── main.m │ ├── release │ │ ├── 512icon.tiff │ │ ├── screenshots │ │ │ ├── about.jpg │ │ │ ├── main.jpg │ │ │ ├── more.jpg │ │ │ ├── newpost.jpg │ │ │ └── photo.jpg │ │ └── tweetero-1.0.zip │ ├── util.h │ ├── util.m │ └── yfrog.png │ ├── twimight-diamond-old │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── AndroidManifest.xml │ ├── assets │ │ └── .gitignore │ ├── libs │ │ ├── .gitignore │ │ ├── android-support-v13.jar │ │ ├── android-support-v4.jar │ │ ├── crittercism_v3_0_8_sdkonly.jar │ │ ├── scprov-jdk15-1.46.99.3-UNOFFICIAL-ROBERTO-RELEASE.jar │ │ ├── signpost-commonshttp4-1.2.1.2.jar │ │ └── signpost-core-1.2.1.2.jar │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── btn_twimight_archive.png │ │ │ ├── btn_twimight_archive_on.png │ │ │ ├── btn_twimight_delete.png │ │ │ ├── btn_twimight_dm.png │ │ │ ├── btn_twimight_favorite.png │ │ │ ├── btn_twimight_favorite_on.png │ │ │ ├── btn_twimight_reply.png │ │ │ ├── btn_twimight_retweet.png │ │ │ ├── btn_twimight_retweet_on.png │ │ │ ├── ic_camera.png │ │ │ ├── ic_camera_off.png │ │ │ ├── ic_launcher_twimight.png │ │ │ ├── ic_menu_add.png │ │ │ ├── ic_menu_agenda.png │ │ │ ├── ic_menu_allfriends.png │ │ │ ├── ic_menu_archive.png │ │ │ ├── ic_menu_block.png │ │ │ ├── ic_menu_blocked_user.png │ │ │ ├── ic_menu_cc.png │ │ │ ├── ic_menu_close_clear_cancel.png │ │ │ ├── ic_menu_compose.png │ │ │ ├── ic_menu_delete.png │ │ │ ├── ic_menu_delete_off.png │ │ │ ├── ic_menu_edit.png │ │ │ ├── ic_menu_emoticons.png │ │ │ ├── ic_menu_end_conversation.png │ │ │ ├── ic_menu_forward.png │ │ │ ├── ic_menu_friendslist.png │ │ │ ├── ic_menu_gallery.png │ │ │ ├── ic_menu_gallery_on.png │ │ │ ├── ic_menu_home.png │ │ │ ├── ic_menu_info_details.png │ │ │ ├── ic_menu_invite.png │ │ │ ├── ic_menu_manage.png │ │ │ ├── ic_menu_mark.png │ │ │ ├── ic_menu_more.png │ │ │ ├── ic_menu_my_calendar.png │ │ │ ├── ic_menu_mylocation.png │ │ │ ├── ic_menu_mylocation_on.png │ │ │ ├── ic_menu_myplaces.png │ │ │ ├── ic_menu_notifications.png │ │ │ ├── ic_menu_preferences.png │ │ │ ├── ic_menu_recent_history.png │ │ │ ├── ic_menu_refresh.png │ │ │ ├── ic_menu_revert.png │ │ │ ├── ic_menu_rotate.png │ │ │ ├── ic_menu_save.png │ │ │ ├── ic_menu_search.png │ │ │ ├── ic_menu_send.png │ │ │ ├── ic_menu_share.png │ │ │ ├── ic_menu_slideshow.png │ │ │ ├── ic_menu_slideshow_off.png │ │ │ ├── ic_menu_star.png │ │ │ ├── ic_menu_start_conversation.png │ │ │ ├── ic_menu_stop.png │ │ │ ├── ic_menu_today.png │ │ │ ├── ic_menu_upload.png │ │ │ ├── ic_menu_view.png │ │ │ ├── ic_menu_zoom.png │ │ │ ├── ic_menu_zoom_off.png │ │ │ ├── ic_notification.png │ │ │ ├── ic_notification_clear_all.png │ │ │ ├── ic_twimight_compose.png │ │ │ ├── ic_twimight_favorite_off.png │ │ │ ├── ic_twimight_favorite_on.png │ │ │ ├── ic_twimight_favorites.png │ │ │ ├── ic_twimight_info.png │ │ │ ├── ic_twimight_info_large.png │ │ │ ├── ic_twimight_mentions.png │ │ │ ├── ic_twimight_retweet_off.png │ │ │ ├── ic_twimight_retweet_on.png │ │ │ ├── ic_twimight_search.png │ │ │ ├── ic_twimight_speech.png │ │ │ ├── icon_phone.png │ │ │ ├── spinner_16_inner_holo.png │ │ │ └── spinner_16_outer_holo.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher_twimight.png │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_twimight.png │ │ │ ├── ic_menu_add.png │ │ │ ├── ic_menu_agenda.png │ │ │ ├── ic_menu_allfriends.png │ │ │ ├── ic_menu_archive.png │ │ │ ├── ic_menu_block.png │ │ │ ├── ic_menu_blocked_user.png │ │ │ ├── ic_menu_cc.png │ │ │ ├── ic_menu_close_clear_cancel.png │ │ │ ├── ic_menu_compose.png │ │ │ ├── ic_menu_delete.png │ │ │ ├── ic_menu_edit.png │ │ │ ├── ic_menu_emoticons.png │ │ │ ├── ic_menu_end_conversation.png │ │ │ ├── ic_menu_forward.png │ │ │ ├── ic_menu_friendslist.png │ │ │ ├── ic_menu_gallery.png │ │ │ ├── ic_menu_help.png │ │ │ ├── ic_menu_home.png │ │ │ ├── ic_menu_info_details.png │ │ │ ├── ic_menu_invite.png │ │ │ ├── ic_menu_manage.png │ │ │ ├── ic_menu_mark.png │ │ │ ├── ic_menu_more.png │ │ │ ├── ic_menu_my_calendar.png │ │ │ ├── ic_menu_mylocation.png │ │ │ ├── ic_menu_myplaces.png │ │ │ ├── ic_menu_notifications.png │ │ │ ├── ic_menu_play_clip.png │ │ │ ├── ic_menu_preferences.png │ │ │ ├── ic_menu_recent_history.png │ │ │ ├── ic_menu_refresh.png │ │ │ ├── ic_menu_revert.png │ │ │ ├── ic_menu_rotate.png │ │ │ ├── ic_menu_save.png │ │ │ ├── ic_menu_search.png │ │ │ ├── ic_menu_send.png │ │ │ ├── ic_menu_share.png │ │ │ ├── ic_menu_slideshow.png │ │ │ ├── ic_menu_star.png │ │ │ ├── ic_menu_start_conversation.png │ │ │ ├── ic_menu_stop.png │ │ │ ├── ic_menu_today.png │ │ │ ├── ic_menu_zoom.png │ │ │ ├── ic_notification.png │ │ │ ├── ic_notification_clear_all.png │ │ │ ├── icon_phone.png │ │ │ ├── spinner_16_inner_holo.png │ │ │ └── spinner_16_outer_holo.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_notification.png │ │ │ ├── icon_phone.png │ │ │ └── id_launcher_twimight.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_notification.png │ │ ├── drawable │ │ │ ├── about_background.xml │ │ │ ├── action_button.xml │ │ │ ├── blank.png │ │ │ ├── border.xml │ │ │ ├── btn_passive.xml │ │ │ ├── button_custom.xml │ │ │ ├── button_passive.xml │ │ │ ├── button_selected.xml │ │ │ ├── content_box.xml │ │ │ ├── content_box_bottom.xml │ │ │ ├── default_profile.png │ │ │ ├── disaster_dm_background_receiver.xml │ │ │ ├── disaster_tweet_background.xml │ │ │ ├── divider.xml │ │ │ ├── galaxys3.jpg │ │ │ ├── header_button.xml │ │ │ ├── header_button_active.xml │ │ │ ├── header_button_passive.xml │ │ │ ├── header_button_selected.xml │ │ │ ├── image_border.xml │ │ │ ├── mention_tweet_background.xml │ │ │ ├── mightybird02.png │ │ │ ├── mightybird_starglow.png │ │ │ ├── normal_tweet_background.xml │ │ │ ├── own_tweet_background.xml │ │ │ ├── progress_spinner_actionbar.xml │ │ │ ├── tab_bar_background.xml │ │ │ ├── tab_bar_selected.xml │ │ │ ├── top_bar_background.xml │ │ │ └── top_bar_background_disaster.xml │ │ ├── layout │ │ │ ├── apprater.xml │ │ │ ├── dialog_login.xml │ │ │ ├── dmrow.xml │ │ │ ├── dmuserrow.xml │ │ │ ├── fragment_layout.xml │ │ │ ├── login.xml │ │ │ ├── main.xml │ │ │ ├── new_dm.xml │ │ │ ├── row.xml │ │ │ ├── show_conditions.xml │ │ │ ├── show_dm_user.xml │ │ │ ├── show_dm_users.xml │ │ │ ├── show_raffle.xml │ │ │ ├── show_tips.xml │ │ │ ├── showabout.xml │ │ │ ├── showsearch.xml │ │ │ ├── showtweet.xml │ │ │ ├── showuser.xml │ │ │ ├── showusertweets.xml │ │ │ ├── tweet.xml │ │ │ ├── userrow.xml │ │ │ └── webview.xml │ │ ├── menu │ │ │ └── main_menu.xml │ │ ├── raw │ │ │ └── rootkey │ │ ├── values-de-rCH │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-de │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-it │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-land │ │ │ └── themes.xml │ │ ├── values │ │ │ ├── arrays.xml │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ └── xml │ │ │ ├── prefs.xml │ │ │ └── searchable.xml │ └── src │ │ ├── ch │ │ └── ethz │ │ │ ├── bluetest │ │ │ └── credentials │ │ │ │ └── Obfuscator.java │ │ │ └── twimight │ │ │ ├── activities │ │ │ ├── AboutActivity.java │ │ │ ├── ConditionsActivity.java │ │ │ ├── LoginActivity.java │ │ │ ├── NewDMActivity.java │ │ │ ├── NewTweetActivity.java │ │ │ ├── PrefsActivity.java │ │ │ ├── SearchableActivity.java │ │ │ ├── ShowDMListActivity.java │ │ │ ├── ShowDMUsersListActivity.java │ │ │ ├── ShowTweetActivity.java │ │ │ ├── ShowTweetListActivity.java │ │ │ ├── ShowUserActivity.java │ │ │ ├── ShowUserListActivity.java │ │ │ ├── ShowUserTweetListActivity.java │ │ │ ├── TwimightBaseActivity.java │ │ │ └── WebViewActivity.java │ │ │ ├── data │ │ │ ├── DBOpenHelper.java │ │ │ ├── FriendsKeysDBHelper.java │ │ │ ├── HtmlPagesDbHelper.java │ │ │ ├── MacsDBHelper.java │ │ │ ├── RevocationDBHelper.java │ │ │ └── StatisticsDBHelper.java │ │ │ ├── fragments │ │ │ ├── DiamondShowTweetFragment.java │ │ │ ├── ListFragment.java │ │ │ ├── LoginDialogFragment.java │ │ │ ├── ShowTweetFragment.java │ │ │ ├── TweetListFragment.java │ │ │ ├── UserListFragment.java │ │ │ └── adapters │ │ │ │ ├── ListViewPageAdapter.java │ │ │ │ └── ShowTweetPageAdapter.java │ │ │ ├── listeners │ │ │ └── TabListener.java │ │ │ ├── location │ │ │ └── LocationHelper.java │ │ │ ├── net │ │ │ ├── Html │ │ │ │ ├── HtmlPage.java │ │ │ │ ├── HtmlService.java │ │ │ │ ├── StartServiceHelper.java │ │ │ │ └── WebArchiveReader.java │ │ │ ├── opportunistic │ │ │ │ ├── BluetoothComms.java │ │ │ │ ├── BluetoothStatus.java │ │ │ │ ├── DevicesReceiver.java │ │ │ │ ├── ScanningAlarm.java │ │ │ │ ├── ScanningService.java │ │ │ │ └── StateChangedReceiver.java │ │ │ ├── tds │ │ │ │ ├── TDSAlarm.java │ │ │ │ ├── TDSCommunication.java │ │ │ │ ├── TDSPublicKey.java │ │ │ │ ├── TDSRequestMessage.java │ │ │ │ ├── TDSResponseMessage.java │ │ │ │ └── TDSService.java │ │ │ └── twitter │ │ │ │ ├── DMAdapter.java │ │ │ │ ├── DMUserAdapter.java │ │ │ │ ├── DiamondTweet.java │ │ │ │ ├── DiamondTweetAdapter.java │ │ │ │ ├── DiamondUser.java │ │ │ │ ├── DirectMessages.java │ │ │ │ ├── DirectMessagesContentProvider.java │ │ │ │ ├── PicturesIntentService.java │ │ │ │ ├── TweetAdapter.java │ │ │ │ ├── TweetListView.java │ │ │ │ ├── Tweets.java │ │ │ │ ├── TweetsContentProvider.java │ │ │ │ ├── TwitterAlarm.java │ │ │ │ ├── TwitterService.java │ │ │ │ ├── TwitterUserAdapter.java │ │ │ │ ├── TwitterUsers.java │ │ │ │ ├── TwitterUsersContentProvider.java │ │ │ │ └── UserAdapter.java │ │ │ ├── security │ │ │ ├── CertificateManager.java │ │ │ ├── KeyManager.java │ │ │ └── RevocationListEntry.java │ │ │ └── util │ │ │ ├── AppRater.java │ │ │ ├── BootReceiver.java │ │ │ ├── CommunicationReceiver.java │ │ │ ├── Constants.java │ │ │ ├── EasySSLSocketFactory.java │ │ │ ├── EasyX509TrustManager.java │ │ │ ├── InternalStorageHelper.java │ │ │ ├── LogCollector.java │ │ │ ├── LogFilesOperations.java │ │ │ ├── OMFReceiver.java │ │ │ ├── SDCardHelper.java │ │ │ ├── TweetTagHandler.java │ │ │ └── TwimightSuggestionProvider.java │ │ ├── com │ │ └── winterwell │ │ │ └── jgeoplanet │ │ │ ├── BoundingBox.java │ │ │ ├── Dx.java │ │ │ ├── GeoCodeQuery.java │ │ │ ├── IGeoCode.java │ │ │ ├── IPlace.java │ │ │ ├── LengthUnit.java │ │ │ ├── Location.java │ │ │ ├── MFloat.java │ │ │ └── package-info.java │ │ └── winterwell │ │ ├── json │ │ ├── JSONArray.java │ │ ├── JSONException.java │ │ ├── JSONObject.java │ │ ├── JSONString.java │ │ ├── JSONStringer.java │ │ ├── JSONTokener.java │ │ ├── JSONWriter.java │ │ └── package-info.java │ │ └── jtwitter │ │ ├── AStream.java │ │ ├── FlickrOAuthProvider.java │ │ ├── InternalUtils.java │ │ ├── Message.java │ │ ├── OAuthSignpostClient.java │ │ ├── Place.java │ │ ├── RateLimit.java │ │ ├── Regex.java │ │ ├── Status.java │ │ ├── Twitter.java │ │ ├── TwitterEvent.java │ │ ├── TwitterException.java │ │ ├── TwitterList.java │ │ ├── TwitterStream.java │ │ ├── Twitter_Account.java │ │ ├── Twitter_Analytics.java │ │ ├── Twitter_Geo.java │ │ ├── Twitter_Users.java │ │ ├── URLConnectionHttpClient.java │ │ ├── User.java │ │ ├── UserStream.java │ │ ├── ecosystem │ │ ├── Klout.java │ │ ├── PeerIndex.java │ │ ├── PeerIndexProfile.java │ │ ├── ThirdParty.java │ │ ├── Topsy.java │ │ ├── TwitLonger.java │ │ ├── TwitterCounter.java │ │ └── TwitterCounterStats.java │ │ └── guts │ │ ├── Base64Encoder.java │ │ └── ClientHttpRequest.java │ ├── twimight-hatchet │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── libs │ │ │ ├── android-support-v13.jar │ │ │ ├── scprov-jdk15-1.46.99.3-UNOFFICIAL-ROBERTO-RELEASE.jar │ │ │ ├── signpost-commonshttp4-1.2.1.2.jar │ │ │ └── signpost-core-1.2.1.2.jar │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── .gitignore │ │ │ ├── java │ │ │ ├── ch │ │ │ │ └── ethz │ │ │ │ │ └── twimight │ │ │ │ │ ├── activities │ │ │ │ │ ├── AboutActivity.java │ │ │ │ │ ├── ConditionsActivity.java │ │ │ │ │ ├── LoginActivity.java │ │ │ │ │ ├── NewDMActivity.java │ │ │ │ │ ├── NewTweetActivity.java │ │ │ │ │ ├── PrefsActivity.java │ │ │ │ │ ├── SearchableActivity.java │ │ │ │ │ ├── ShowDMListActivity.java │ │ │ │ │ ├── ShowDMUsersListActivity.java │ │ │ │ │ ├── ShowTweetActivity.java │ │ │ │ │ ├── ShowTweetListActivity.java │ │ │ │ │ ├── ShowUserActivity.java │ │ │ │ │ ├── ShowUserListActivity.java │ │ │ │ │ ├── ShowUserTweetListActivity.java │ │ │ │ │ └── TwimightBaseActivity.java │ │ │ │ │ ├── data │ │ │ │ │ ├── DBOpenHelper.java │ │ │ │ │ ├── FriendsKeysDBHelper.java │ │ │ │ │ ├── MacsDBHelper.java │ │ │ │ │ └── StatisticsDBHelper.java │ │ │ │ │ ├── fragments │ │ │ │ │ ├── ListFragment.java │ │ │ │ │ ├── LoginDialogFragment.java │ │ │ │ │ ├── ShowTweetFragment.java │ │ │ │ │ ├── TweetListFragment.java │ │ │ │ │ ├── UserListFragment.java │ │ │ │ │ └── adapters │ │ │ │ │ │ ├── ListViewPageAdapter.java │ │ │ │ │ │ └── ShowTweetPageAdapter.java │ │ │ │ │ ├── listeners │ │ │ │ │ └── TabListener.java │ │ │ │ │ ├── net │ │ │ │ │ └── twitter │ │ │ │ │ │ ├── DMAdapter.java │ │ │ │ │ │ ├── DMUserAdapter.java │ │ │ │ │ │ ├── DirectMessages.java │ │ │ │ │ │ ├── DirectMessagesContentProvider.java │ │ │ │ │ │ ├── TweetAdapter.java │ │ │ │ │ │ ├── TweetListView.java │ │ │ │ │ │ ├── Tweets.java │ │ │ │ │ │ ├── TweetsContentProvider.java │ │ │ │ │ │ ├── TwitterAlarm.java │ │ │ │ │ │ ├── TwitterService.java │ │ │ │ │ │ ├── TwitterUserAdapter.java │ │ │ │ │ │ ├── TwitterUsers.java │ │ │ │ │ │ ├── TwitterUsersContentProvider.java │ │ │ │ │ │ └── UserAdapter.java │ │ │ │ │ └── util │ │ │ │ │ ├── AppRater.java │ │ │ │ │ ├── BootReceiver.java │ │ │ │ │ ├── CommunicationReceiver.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── TweetTagHandler.java │ │ │ │ │ └── TwimightSuggestionProvider.java │ │ │ ├── com │ │ │ │ └── winterwell │ │ │ │ │ └── jgeoplanet │ │ │ │ │ ├── BoundingBox.java │ │ │ │ │ ├── Dx.java │ │ │ │ │ ├── GeoCodeQuery.java │ │ │ │ │ ├── IGeoCode.java │ │ │ │ │ ├── IPlace.java │ │ │ │ │ ├── LengthUnit.java │ │ │ │ │ ├── Location.java │ │ │ │ │ ├── MFloat.java │ │ │ │ │ └── package-info.java │ │ │ └── winterwell │ │ │ │ ├── json │ │ │ │ ├── JSONArray.java │ │ │ │ ├── JSONException.java │ │ │ │ ├── JSONObject.java │ │ │ │ ├── JSONString.java │ │ │ │ ├── JSONStringer.java │ │ │ │ ├── JSONTokener.java │ │ │ │ ├── JSONWriter.java │ │ │ │ └── package-info.java │ │ │ │ └── jtwitter │ │ │ │ ├── AStream.java │ │ │ │ ├── FlickrOAuthProvider.java │ │ │ │ ├── InternalUtils.java │ │ │ │ ├── Message.java │ │ │ │ ├── OAuthSignpostClient.java │ │ │ │ ├── Place.java │ │ │ │ ├── RateLimit.java │ │ │ │ ├── Regex.java │ │ │ │ ├── Status.java │ │ │ │ ├── Twitter.java │ │ │ │ ├── TwitterEvent.java │ │ │ │ ├── TwitterException.java │ │ │ │ ├── TwitterList.java │ │ │ │ ├── TwitterStream.java │ │ │ │ ├── Twitter_Account.java │ │ │ │ ├── Twitter_Analytics.java │ │ │ │ ├── Twitter_Geo.java │ │ │ │ ├── Twitter_Users.java │ │ │ │ ├── URLConnectionHttpClient.java │ │ │ │ ├── User.java │ │ │ │ ├── UserStream.java │ │ │ │ ├── ecosystem │ │ │ │ ├── Klout.java │ │ │ │ ├── PeerIndex.java │ │ │ │ ├── PeerIndexProfile.java │ │ │ │ ├── ThirdParty.java │ │ │ │ ├── Topsy.java │ │ │ │ ├── TwitLonger.java │ │ │ │ ├── TwitterCounter.java │ │ │ │ └── TwitterCounterStats.java │ │ │ │ └── guts │ │ │ │ ├── Base64Encoder.java │ │ │ │ └── ClientHttpRequest.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── btn_twimight_archive.png │ │ │ ├── btn_twimight_archive_on.png │ │ │ ├── btn_twimight_delete.png │ │ │ ├── btn_twimight_dm.png │ │ │ ├── btn_twimight_favorite.png │ │ │ ├── btn_twimight_favorite_on.png │ │ │ ├── btn_twimight_reply.png │ │ │ ├── btn_twimight_retweet.png │ │ │ ├── btn_twimight_retweet_on.png │ │ │ ├── ic_camera.png │ │ │ ├── ic_camera_off.png │ │ │ ├── ic_launcher_twimight.png │ │ │ ├── ic_menu_add.png │ │ │ ├── ic_menu_agenda.png │ │ │ ├── ic_menu_allfriends.png │ │ │ ├── ic_menu_archive.png │ │ │ ├── ic_menu_block.png │ │ │ ├── ic_menu_blocked_user.png │ │ │ ├── ic_menu_cc.png │ │ │ ├── ic_menu_close_clear_cancel.png │ │ │ ├── ic_menu_compose.png │ │ │ ├── ic_menu_delete.png │ │ │ ├── ic_menu_delete_off.png │ │ │ ├── ic_menu_edit.png │ │ │ ├── ic_menu_emoticons.png │ │ │ ├── ic_menu_end_conversation.png │ │ │ ├── ic_menu_forward.png │ │ │ ├── ic_menu_friendslist.png │ │ │ ├── ic_menu_gallery.png │ │ │ ├── ic_menu_gallery_on.png │ │ │ ├── ic_menu_home.png │ │ │ ├── ic_menu_info_details.png │ │ │ ├── ic_menu_invite.png │ │ │ ├── ic_menu_manage.png │ │ │ ├── ic_menu_mark.png │ │ │ ├── ic_menu_more.png │ │ │ ├── ic_menu_my_calendar.png │ │ │ ├── ic_menu_mylocation.png │ │ │ ├── ic_menu_mylocation_on.png │ │ │ ├── ic_menu_myplaces.png │ │ │ ├── ic_menu_notifications.png │ │ │ ├── ic_menu_preferences.png │ │ │ ├── ic_menu_recent_history.png │ │ │ ├── ic_menu_refresh.png │ │ │ ├── ic_menu_revert.png │ │ │ ├── ic_menu_rotate.png │ │ │ ├── ic_menu_save.png │ │ │ ├── ic_menu_search.png │ │ │ ├── ic_menu_send.png │ │ │ ├── ic_menu_share.png │ │ │ ├── ic_menu_slideshow.png │ │ │ ├── ic_menu_slideshow_off.png │ │ │ ├── ic_menu_star.png │ │ │ ├── ic_menu_start_conversation.png │ │ │ ├── ic_menu_stop.png │ │ │ ├── ic_menu_today.png │ │ │ ├── ic_menu_upload.png │ │ │ ├── ic_menu_view.png │ │ │ ├── ic_menu_zoom.png │ │ │ ├── ic_menu_zoom_off.png │ │ │ ├── ic_notification.png │ │ │ ├── ic_notification_clear_all.png │ │ │ ├── ic_twimight_compose.png │ │ │ ├── ic_twimight_favorite_off.png │ │ │ ├── ic_twimight_favorite_on.png │ │ │ ├── ic_twimight_favorites.png │ │ │ ├── ic_twimight_info.png │ │ │ ├── ic_twimight_info_large.png │ │ │ ├── ic_twimight_mentions.png │ │ │ ├── ic_twimight_retweet_off.png │ │ │ ├── ic_twimight_retweet_on.png │ │ │ ├── ic_twimight_search.png │ │ │ ├── ic_twimight_speech.png │ │ │ ├── icon_phone.png │ │ │ ├── spinner_16_inner_holo.png │ │ │ └── spinner_16_outer_holo.png │ │ │ ├── drawable-ldpi │ │ │ └── ic_launcher_twimight.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_twimight.png │ │ │ ├── ic_menu_add.png │ │ │ ├── ic_menu_agenda.png │ │ │ ├── ic_menu_allfriends.png │ │ │ ├── ic_menu_archive.png │ │ │ ├── ic_menu_block.png │ │ │ ├── ic_menu_blocked_user.png │ │ │ ├── ic_menu_cc.png │ │ │ ├── ic_menu_close_clear_cancel.png │ │ │ ├── ic_menu_compose.png │ │ │ ├── ic_menu_delete.png │ │ │ ├── ic_menu_edit.png │ │ │ ├── ic_menu_emoticons.png │ │ │ ├── ic_menu_end_conversation.png │ │ │ ├── ic_menu_forward.png │ │ │ ├── ic_menu_friendslist.png │ │ │ ├── ic_menu_gallery.png │ │ │ ├── ic_menu_help.png │ │ │ ├── ic_menu_home.png │ │ │ ├── ic_menu_info_details.png │ │ │ ├── ic_menu_invite.png │ │ │ ├── ic_menu_manage.png │ │ │ ├── ic_menu_mark.png │ │ │ ├── ic_menu_more.png │ │ │ ├── ic_menu_my_calendar.png │ │ │ ├── ic_menu_mylocation.png │ │ │ ├── ic_menu_myplaces.png │ │ │ ├── ic_menu_notifications.png │ │ │ ├── ic_menu_play_clip.png │ │ │ ├── ic_menu_preferences.png │ │ │ ├── ic_menu_recent_history.png │ │ │ ├── ic_menu_refresh.png │ │ │ ├── ic_menu_revert.png │ │ │ ├── ic_menu_rotate.png │ │ │ ├── ic_menu_save.png │ │ │ ├── ic_menu_search.png │ │ │ ├── ic_menu_send.png │ │ │ ├── ic_menu_share.png │ │ │ ├── ic_menu_slideshow.png │ │ │ ├── ic_menu_star.png │ │ │ ├── ic_menu_start_conversation.png │ │ │ ├── ic_menu_stop.png │ │ │ ├── ic_menu_today.png │ │ │ ├── ic_menu_zoom.png │ │ │ ├── ic_notification.png │ │ │ ├── ic_notification_clear_all.png │ │ │ ├── icon_phone.png │ │ │ ├── spinner_16_inner_holo.png │ │ │ └── spinner_16_outer_holo.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_notification.png │ │ │ ├── icon_phone.png │ │ │ └── id_launcher_twimight.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_notification.png │ │ │ ├── drawable │ │ │ ├── about_background.xml │ │ │ ├── action_button.xml │ │ │ ├── blank.png │ │ │ ├── border.xml │ │ │ ├── btn_passive.xml │ │ │ ├── button_custom.xml │ │ │ ├── button_passive.xml │ │ │ ├── button_selected.xml │ │ │ ├── content_box.xml │ │ │ ├── content_box_bottom.xml │ │ │ ├── default_profile.png │ │ │ ├── disaster_dm_background_receiver.xml │ │ │ ├── disaster_tweet_background.xml │ │ │ ├── divider.xml │ │ │ ├── galaxys3.jpg │ │ │ ├── header_button.xml │ │ │ ├── header_button_active.xml │ │ │ ├── header_button_passive.xml │ │ │ ├── header_button_selected.xml │ │ │ ├── image_border.xml │ │ │ ├── mention_tweet_background.xml │ │ │ ├── mightybird02.png │ │ │ ├── mightybird_starglow.png │ │ │ ├── normal_tweet_background.xml │ │ │ ├── own_tweet_background.xml │ │ │ ├── progress_spinner_actionbar.xml │ │ │ ├── tab_bar_background.xml │ │ │ ├── tab_bar_selected.xml │ │ │ ├── top_bar_background.xml │ │ │ └── top_bar_background_disaster.xml │ │ │ ├── layout │ │ │ ├── apprater.xml │ │ │ ├── dialog_login.xml │ │ │ ├── dmrow.xml │ │ │ ├── dmuserrow.xml │ │ │ ├── fragment_layout.xml │ │ │ ├── login.xml │ │ │ ├── main.xml │ │ │ ├── new_dm.xml │ │ │ ├── row.xml │ │ │ ├── show_conditions.xml │ │ │ ├── show_dm_user.xml │ │ │ ├── show_dm_users.xml │ │ │ ├── show_raffle.xml │ │ │ ├── show_tips.xml │ │ │ ├── showabout.xml │ │ │ ├── showsearch.xml │ │ │ ├── showtweet.xml │ │ │ ├── showuser.xml │ │ │ ├── showusertweets.xml │ │ │ ├── tweet.xml │ │ │ ├── userrow.xml │ │ │ └── webview.xml │ │ │ ├── menu │ │ │ └── main_menu.xml │ │ │ ├── raw │ │ │ └── rootkey │ │ │ ├── values-de-rCH │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ │ ├── values-land │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── arrays.xml │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── prefs.xml │ │ │ └── searchable.xml │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ └── twimight │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── AndroidManifest.xml │ ├── assets │ └── .gitignore │ ├── libs │ ├── android-support-v13.jar │ ├── android-support-v4.jar │ ├── crittercism_v3_0_8_sdkonly.jar │ ├── scprov-jdk15-1.46.99.3-UNOFFICIAL-ROBERTO-RELEASE.jar │ ├── signpost-commonshttp4-1.2.1.2.jar │ └── signpost-core-1.2.1.2.jar │ ├── proguard.cfg │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ ├── btn_twimight_archive.png │ │ ├── btn_twimight_archive_on.png │ │ ├── btn_twimight_delete.png │ │ ├── btn_twimight_dm.png │ │ ├── btn_twimight_favorite.png │ │ ├── btn_twimight_favorite_on.png │ │ ├── btn_twimight_reply.png │ │ ├── btn_twimight_retweet.png │ │ ├── btn_twimight_retweet_on.png │ │ ├── ic_camera.png │ │ ├── ic_camera_off.png │ │ ├── ic_launcher_twimight.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_agenda.png │ │ ├── ic_menu_allfriends.png │ │ ├── ic_menu_archive.png │ │ ├── ic_menu_block.png │ │ ├── ic_menu_blocked_user.png │ │ ├── ic_menu_cc.png │ │ ├── ic_menu_close_clear_cancel.png │ │ ├── ic_menu_compose.png │ │ ├── ic_menu_delete.png │ │ ├── ic_menu_delete_off.png │ │ ├── ic_menu_edit.png │ │ ├── ic_menu_emoticons.png │ │ ├── ic_menu_end_conversation.png │ │ ├── ic_menu_forward.png │ │ ├── ic_menu_friendslist.png │ │ ├── ic_menu_gallery.png │ │ ├── ic_menu_gallery_on.png │ │ ├── ic_menu_home.png │ │ ├── ic_menu_info_details.png │ │ ├── ic_menu_invite.png │ │ ├── ic_menu_manage.png │ │ ├── ic_menu_mark.png │ │ ├── ic_menu_more.png │ │ ├── ic_menu_my_calendar.png │ │ ├── ic_menu_mylocation.png │ │ ├── ic_menu_mylocation_on.png │ │ ├── ic_menu_myplaces.png │ │ ├── ic_menu_notifications.png │ │ ├── ic_menu_preferences.png │ │ ├── ic_menu_recent_history.png │ │ ├── ic_menu_refresh.png │ │ ├── ic_menu_revert.png │ │ ├── ic_menu_rotate.png │ │ ├── ic_menu_save.png │ │ ├── ic_menu_search.png │ │ ├── ic_menu_send.png │ │ ├── ic_menu_share.png │ │ ├── ic_menu_slideshow.png │ │ ├── ic_menu_slideshow_off.png │ │ ├── ic_menu_star.png │ │ ├── ic_menu_start_conversation.png │ │ ├── ic_menu_stop.png │ │ ├── ic_menu_today.png │ │ ├── ic_menu_upload.png │ │ ├── ic_menu_view.png │ │ ├── ic_menu_zoom.png │ │ ├── ic_menu_zoom_off.png │ │ ├── ic_notification.png │ │ ├── ic_notification_clear_all.png │ │ ├── ic_twimight_compose.png │ │ ├── ic_twimight_favorite_off.png │ │ ├── ic_twimight_favorite_on.png │ │ ├── ic_twimight_favorites.png │ │ ├── ic_twimight_info.png │ │ ├── ic_twimight_info_large.png │ │ ├── ic_twimight_mentions.png │ │ ├── ic_twimight_retweet_off.png │ │ ├── ic_twimight_retweet_on.png │ │ ├── ic_twimight_search.png │ │ ├── ic_twimight_speech.png │ │ ├── icon_phone.png │ │ ├── spinner_16_inner_holo.png │ │ └── spinner_16_outer_holo.png │ ├── drawable-ldpi │ │ └── ic_launcher_twimight.png │ ├── drawable-mdpi │ │ ├── ic_launcher_twimight.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_agenda.png │ │ ├── ic_menu_allfriends.png │ │ ├── ic_menu_archive.png │ │ ├── ic_menu_block.png │ │ ├── ic_menu_blocked_user.png │ │ ├── ic_menu_cc.png │ │ ├── ic_menu_close_clear_cancel.png │ │ ├── ic_menu_compose.png │ │ ├── ic_menu_delete.png │ │ ├── ic_menu_edit.png │ │ ├── ic_menu_emoticons.png │ │ ├── ic_menu_end_conversation.png │ │ ├── ic_menu_forward.png │ │ ├── ic_menu_friendslist.png │ │ ├── ic_menu_gallery.png │ │ ├── ic_menu_help.png │ │ ├── ic_menu_home.png │ │ ├── ic_menu_info_details.png │ │ ├── ic_menu_invite.png │ │ ├── ic_menu_manage.png │ │ ├── ic_menu_mark.png │ │ ├── ic_menu_more.png │ │ ├── ic_menu_my_calendar.png │ │ ├── ic_menu_mylocation.png │ │ ├── ic_menu_myplaces.png │ │ ├── ic_menu_notifications.png │ │ ├── ic_menu_play_clip.png │ │ ├── ic_menu_preferences.png │ │ ├── ic_menu_recent_history.png │ │ ├── ic_menu_refresh.png │ │ ├── ic_menu_revert.png │ │ ├── ic_menu_rotate.png │ │ ├── ic_menu_save.png │ │ ├── ic_menu_search.png │ │ ├── ic_menu_send.png │ │ ├── ic_menu_share.png │ │ ├── ic_menu_slideshow.png │ │ ├── ic_menu_star.png │ │ ├── ic_menu_start_conversation.png │ │ ├── ic_menu_stop.png │ │ ├── ic_menu_today.png │ │ ├── ic_menu_zoom.png │ │ ├── ic_notification.png │ │ ├── ic_notification_clear_all.png │ │ ├── icon_phone.png │ │ ├── spinner_16_inner_holo.png │ │ └── spinner_16_outer_holo.png │ ├── drawable-xhdpi │ │ ├── ic_notification.png │ │ ├── icon_phone.png │ │ └── id_launcher_twimight.png │ ├── drawable-xxhdpi │ │ └── ic_notification.png │ ├── drawable │ │ ├── about_background.xml │ │ ├── action_button.xml │ │ ├── blank.png │ │ ├── border.xml │ │ ├── btn_passive.xml │ │ ├── button_custom.xml │ │ ├── button_passive.xml │ │ ├── button_selected.xml │ │ ├── content_box.xml │ │ ├── content_box_bottom.xml │ │ ├── default_profile.png │ │ ├── disaster_dm_background_receiver.xml │ │ ├── disaster_tweet_background.xml │ │ ├── divider.xml │ │ ├── galaxys3.jpg │ │ ├── header_button.xml │ │ ├── header_button_active.xml │ │ ├── header_button_passive.xml │ │ ├── header_button_selected.xml │ │ ├── image_border.xml │ │ ├── mention_tweet_background.xml │ │ ├── mightybird02.png │ │ ├── mightybird_starglow.png │ │ ├── normal_tweet_background.xml │ │ ├── own_tweet_background.xml │ │ ├── progress_spinner_actionbar.xml │ │ ├── tab_bar_background.xml │ │ ├── tab_bar_selected.xml │ │ ├── top_bar_background.xml │ │ └── top_bar_background_disaster.xml │ ├── layout │ │ ├── apprater.xml │ │ ├── dialog_login.xml │ │ ├── dmrow.xml │ │ ├── dmuserrow.xml │ │ ├── fragment_layout.xml │ │ ├── login.xml │ │ ├── main.xml │ │ ├── new_dm.xml │ │ ├── row.xml │ │ ├── show_conditions.xml │ │ ├── show_dm_user.xml │ │ ├── show_dm_users.xml │ │ ├── show_raffle.xml │ │ ├── show_tips.xml │ │ ├── showabout.xml │ │ ├── showsearch.xml │ │ ├── showtweet.xml │ │ ├── showuser.xml │ │ ├── showusertweets.xml │ │ ├── tweet.xml │ │ ├── userrow.xml │ │ └── webview.xml │ ├── menu │ │ └── main_menu.xml │ ├── raw │ │ └── rootkey │ ├── values-de-rCH │ │ ├── arrays.xml │ │ └── strings.xml │ ├── values-de │ │ ├── arrays.xml │ │ └── strings.xml │ ├── values-it │ │ ├── arrays.xml │ │ └── strings.xml │ ├── values-land │ │ └── themes.xml │ ├── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ └── xml │ │ ├── prefs.xml │ │ └── searchable.xml │ └── src │ ├── ch │ └── ethz │ │ ├── bluetest │ │ └── credentials │ │ │ └── Obfuscator.java │ │ └── twimight │ │ ├── activities │ │ ├── AboutActivity.java │ │ ├── ConditionsActivity.java │ │ ├── LoginActivity.java │ │ ├── NewDMActivity.java │ │ ├── NewTweetActivity.java │ │ ├── PrefsActivity.java │ │ ├── SearchableActivity.java │ │ ├── ShowDMListActivity.java │ │ ├── ShowDMUsersListActivity.java │ │ ├── ShowTweetActivity.java │ │ ├── ShowTweetListActivity.java │ │ ├── ShowUserActivity.java │ │ ├── ShowUserListActivity.java │ │ ├── ShowUserTweetListActivity.java │ │ ├── TwimightBaseActivity.java │ │ └── WebViewActivity.java │ │ ├── data │ │ ├── DBOpenHelper.java │ │ ├── FriendsKeysDBHelper.java │ │ ├── HtmlPagesDbHelper.java │ │ ├── MacsDBHelper.java │ │ ├── RevocationDBHelper.java │ │ └── StatisticsDBHelper.java │ │ ├── fragments │ │ ├── ListFragment.java │ │ ├── LoginDialogFragment.java │ │ ├── ShowTweetFragment.java │ │ ├── TweetListFragment.java │ │ ├── UserListFragment.java │ │ └── adapters │ │ │ ├── ListViewPageAdapter.java │ │ │ └── ShowTweetPageAdapter.java │ │ ├── listeners │ │ └── TabListener.java │ │ ├── location │ │ └── LocationHelper.java │ │ ├── net │ │ ├── Html │ │ │ ├── HtmlPage.java │ │ │ ├── HtmlService.java │ │ │ ├── StartServiceHelper.java │ │ │ └── WebArchiveReader.java │ │ ├── opportunistic │ │ │ ├── BluetoothComms.java │ │ │ ├── BluetoothStatus.java │ │ │ ├── DevicesReceiver.java │ │ │ ├── ScanningAlarm.java │ │ │ ├── ScanningService.java │ │ │ └── StateChangedReceiver.java │ │ ├── tds │ │ │ ├── TDSAlarm.java │ │ │ ├── TDSCommunication.java │ │ │ ├── TDSPublicKey.java │ │ │ ├── TDSRequestMessage.java │ │ │ ├── TDSResponseMessage.java │ │ │ └── TDSService.java │ │ └── twitter │ │ │ ├── DMAdapter.java │ │ │ ├── DMUserAdapter.java │ │ │ ├── DirectMessages.java │ │ │ ├── DirectMessagesContentProvider.java │ │ │ ├── PicturesIntentService.java │ │ │ ├── TweetAdapter.java │ │ │ ├── TweetListView.java │ │ │ ├── Tweets.java │ │ │ ├── TweetsContentProvider.java │ │ │ ├── TwitterAlarm.java │ │ │ ├── TwitterService.java │ │ │ ├── TwitterUserAdapter.java │ │ │ ├── TwitterUsers.java │ │ │ ├── TwitterUsersContentProvider.java │ │ │ └── UserAdapter.java │ │ ├── security │ │ ├── CertificateManager.java │ │ ├── KeyManager.java │ │ └── RevocationListEntry.java │ │ └── util │ │ ├── AppRater.java │ │ ├── BootReceiver.java │ │ ├── CommunicationReceiver.java │ │ ├── Constants.java │ │ ├── EasySSLSocketFactory.java │ │ ├── EasyX509TrustManager.java │ │ ├── InternalStorageHelper.java │ │ ├── LogCollector.java │ │ ├── LogFilesOperations.java │ │ ├── OMFReceiver.java │ │ ├── SDCardHelper.java │ │ ├── TweetTagHandler.java │ │ └── TwimightSuggestionProvider.java │ ├── com │ └── winterwell │ │ └── jgeoplanet │ │ ├── BoundingBox.java │ │ ├── Dx.java │ │ ├── GeoCodeQuery.java │ │ ├── IGeoCode.java │ │ ├── IPlace.java │ │ ├── LengthUnit.java │ │ ├── Location.java │ │ ├── MFloat.java │ │ └── package-info.java │ └── winterwell │ ├── json │ ├── JSONArray.java │ ├── JSONException.java │ ├── JSONObject.java │ ├── JSONString.java │ ├── JSONStringer.java │ ├── JSONTokener.java │ ├── JSONWriter.java │ └── package-info.java │ └── jtwitter │ ├── AStream.java │ ├── FlickrOAuthProvider.java │ ├── InternalUtils.java │ ├── Message.java │ ├── OAuthSignpostClient.java │ ├── Place.java │ ├── RateLimit.java │ ├── Regex.java │ ├── Status.java │ ├── Twitter.java │ ├── TwitterEvent.java │ ├── TwitterException.java │ ├── TwitterList.java │ ├── TwitterStream.java │ ├── Twitter_Account.java │ ├── Twitter_Analytics.java │ ├── Twitter_Geo.java │ ├── Twitter_Users.java │ ├── URLConnectionHttpClient.java │ ├── User.java │ ├── UserStream.java │ ├── ecosystem │ ├── Klout.java │ ├── PeerIndex.java │ ├── PeerIndexProfile.java │ ├── ThirdParty.java │ ├── Topsy.java │ ├── TwitLonger.java │ ├── TwitterCounter.java │ └── TwitterCounterStats.java │ └── guts │ ├── Base64Encoder.java │ └── ClientHttpRequest.java ├── external ├── libevent │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── ChangeLog-1.4 │ ├── ChangeLog-2.0 │ ├── Doxyfile │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.nmake │ ├── README.md │ ├── WIN32-Code │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── getopt_long.c │ │ ├── nmake │ │ │ ├── evconfig-private.h │ │ │ └── event2 │ │ │ │ └── event-config.h │ │ └── tree.h │ ├── appveyor.yml │ ├── arc4random.c │ ├── autogen.sh │ ├── buffer.c │ ├── buffer_iocp.c │ ├── bufferevent-internal.h │ ├── bufferevent.c │ ├── bufferevent_async.c │ ├── bufferevent_filter.c │ ├── bufferevent_openssl.c │ ├── bufferevent_pair.c │ ├── bufferevent_ratelim.c │ ├── bufferevent_sock.c │ ├── changelist-internal.h │ ├── cmake │ │ ├── AddCompilerFlags.cmake │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── CheckFileOffsetBits.c │ │ ├── CheckFileOffsetBits.cmake │ │ ├── CheckFunctionExistsEx.c │ │ ├── CheckFunctionExistsEx.cmake │ │ ├── CheckFunctionKeywords.cmake │ │ ├── CheckPrototypeDefinition.c.in │ │ ├── CheckPrototypeDefinition.cmake │ │ ├── CheckWorkingKqueue.cmake │ │ ├── CodeCoverage.cmake │ │ ├── Copyright.txt │ │ ├── FindGit.cmake │ │ ├── LibeventConfig.cmake.in │ │ ├── LibeventConfigBuildTree.cmake.in │ │ ├── LibeventConfigVersion.cmake.in │ │ └── VersionViaGit.cmake │ ├── compat │ │ └── sys │ │ │ └── queue.h │ ├── configure.ac │ ├── defer-internal.h │ ├── devpoll.c │ ├── epoll.c │ ├── epoll_sub.c │ ├── epolltable-internal.h │ ├── evbuffer-internal.h │ ├── evconfig-private.h.cmake │ ├── evconfig-private.h.in │ ├── evdns.3 │ ├── evdns.c │ ├── event-config.h.cmake │ ├── event-internal.h │ ├── event.3 │ ├── event.c │ ├── event_iocp.c │ ├── event_rpcgen.py │ ├── event_tagging.c │ ├── evmap-internal.h │ ├── evmap.c │ ├── evport.c │ ├── evrpc-internal.h │ ├── evrpc.c │ ├── evsignal-internal.h │ ├── evthread-internal.h │ ├── evthread.c │ ├── evthread_pthread.c │ ├── evthread_win32.c │ ├── evutil.c │ ├── evutil_rand.c │ ├── evutil_time.c │ ├── ht-internal.h │ ├── http-internal.h │ ├── http.c │ ├── include │ │ ├── evdns.h │ │ ├── event.h │ │ ├── event2 │ │ │ ├── buffer.h │ │ │ ├── buffer_compat.h │ │ │ ├── bufferevent.h │ │ │ ├── bufferevent_compat.h │ │ │ ├── bufferevent_ssl.h │ │ │ ├── bufferevent_struct.h │ │ │ ├── dns.h │ │ │ ├── dns_compat.h │ │ │ ├── dns_struct.h │ │ │ ├── event.h │ │ │ ├── event_compat.h │ │ │ ├── event_struct.h │ │ │ ├── http.h │ │ │ ├── http_compat.h │ │ │ ├── http_struct.h │ │ │ ├── keyvalq_struct.h │ │ │ ├── listener.h │ │ │ ├── rpc.h │ │ │ ├── rpc_compat.h │ │ │ ├── rpc_struct.h │ │ │ ├── tag.h │ │ │ ├── tag_compat.h │ │ │ ├── thread.h │ │ │ ├── util.h │ │ │ └── visibility.h │ │ ├── evhttp.h │ │ ├── evrpc.h │ │ ├── evutil.h │ │ └── include.am │ ├── iocp-internal.h │ ├── ipv6-internal.h │ ├── kqueue-internal.h │ ├── kqueue.c │ ├── libevent.pc.in │ ├── libevent_openssl.pc.in │ ├── libevent_pthreads.pc.in │ ├── listener.c │ ├── log-internal.h │ ├── log.c │ ├── m4 │ │ ├── ac_backport_259_ssizet.m4 │ │ ├── acx_pthread.m4 │ │ ├── libevent_openssl.m4 │ │ └── ntp_pkg_config.m4 │ ├── make-event-config.sed │ ├── make_epoll_table.py │ ├── minheap-internal.h │ ├── mm-internal.h │ ├── poll.c │ ├── ratelim-internal.h │ ├── sample │ │ ├── dns-example.c │ │ ├── event-read-fifo.c │ │ ├── hello-world.c │ │ ├── hostcheck.c │ │ ├── hostcheck.h │ │ ├── http-connect.c │ │ ├── http-server.c │ │ ├── https-client.c │ │ ├── include.am │ │ ├── le-proxy.c │ │ ├── openssl_hostname_validation.c │ │ ├── openssl_hostname_validation.h │ │ ├── signal-test.c │ │ └── time-test.c │ ├── select.c │ ├── signal.c │ ├── strlcpy-internal.h │ ├── strlcpy.c │ ├── test │ │ ├── Makefile.nmake │ │ ├── bench.c │ │ ├── bench_cascade.c │ │ ├── bench_http.c │ │ ├── bench_httpclient.c │ │ ├── check-dumpevents.py │ │ ├── include.am │ │ ├── print-winsock-errors.c │ │ ├── regress.c │ │ ├── regress.h │ │ ├── regress.rpc │ │ ├── regress_buffer.c │ │ ├── regress_bufferevent.c │ │ ├── regress_dns.c │ │ ├── regress_et.c │ │ ├── regress_finalize.c │ │ ├── regress_http.c │ │ ├── regress_iocp.c │ │ ├── regress_listener.c │ │ ├── regress_main.c │ │ ├── regress_minheap.c │ │ ├── regress_rpc.c │ │ ├── regress_ssl.c │ │ ├── regress_testutils.c │ │ ├── regress_testutils.h │ │ ├── regress_thread.c │ │ ├── regress_thread.h │ │ ├── regress_util.c │ │ ├── regress_zlib.c │ │ ├── rpcgen_wrapper.sh │ │ ├── test-changelist.c │ │ ├── test-closed.c │ │ ├── test-dumpevents.c │ │ ├── test-eof.c │ │ ├── test-fdleak.c │ │ ├── test-init.c │ │ ├── test-ratelim.c │ │ ├── test-ratelim.sh │ │ ├── test-time.c │ │ ├── test-weof.c │ │ ├── test.sh │ │ ├── tinytest.c │ │ ├── tinytest.h │ │ ├── tinytest_demo.c │ │ ├── tinytest_local.h │ │ └── tinytest_macros.h │ ├── time-internal.h │ ├── util-internal.h │ ├── whatsnew-2.0.txt │ ├── whatsnew-2.1.txt │ └── win32select.c ├── protobuf-2.5.0 │ ├── .gitignore │ ├── CHANGES.txt │ ├── CONTRIBUTORS.txt │ ├── COPYING.txt │ ├── INSTALL.txt │ ├── Makefile.am │ ├── README.txt │ ├── autogen.sh │ ├── benchmarks │ │ ├── ProtoBench.java │ │ ├── google_message1.dat │ │ ├── google_message2.dat │ │ ├── google_size.proto │ │ ├── google_speed.proto │ │ └── readme.txt │ ├── configure.ac │ ├── editors │ │ ├── README.txt │ │ ├── proto.vim │ │ └── protobuf-mode.el │ ├── examples │ │ ├── AddPerson.java │ │ ├── ListPeople.java │ │ ├── Makefile │ │ ├── README.txt │ │ ├── add_person.cc │ │ ├── add_person.py │ │ ├── addressbook.proto │ │ ├── list_people.cc │ │ └── list_people.py │ ├── generate_descriptor_proto.sh │ ├── java │ │ ├── README.txt │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── AbstractMessage.java │ │ │ │ ├── AbstractMessageLite.java │ │ │ │ ├── AbstractParser.java │ │ │ │ ├── BlockingRpcChannel.java │ │ │ │ ├── BlockingService.java │ │ │ │ ├── BoundedByteString.java │ │ │ │ ├── ByteString.java │ │ │ │ ├── CodedInputStream.java │ │ │ │ ├── CodedOutputStream.java │ │ │ │ ├── Descriptors.java │ │ │ │ ├── DynamicMessage.java │ │ │ │ ├── ExtensionRegistry.java │ │ │ │ ├── ExtensionRegistryLite.java │ │ │ │ ├── FieldSet.java │ │ │ │ ├── GeneratedMessage.java │ │ │ │ ├── GeneratedMessageLite.java │ │ │ │ ├── Internal.java │ │ │ │ ├── InvalidProtocolBufferException.java │ │ │ │ ├── LazyField.java │ │ │ │ ├── LazyStringArrayList.java │ │ │ │ ├── LazyStringList.java │ │ │ │ ├── LiteralByteString.java │ │ │ │ ├── Message.java │ │ │ │ ├── MessageLite.java │ │ │ │ ├── MessageLiteOrBuilder.java │ │ │ │ ├── MessageOrBuilder.java │ │ │ │ ├── Parser.java │ │ │ │ ├── ProtocolMessageEnum.java │ │ │ │ ├── RepeatedFieldBuilder.java │ │ │ │ ├── RopeByteString.java │ │ │ │ ├── RpcCallback.java │ │ │ │ ├── RpcChannel.java │ │ │ │ ├── RpcController.java │ │ │ │ ├── RpcUtil.java │ │ │ │ ├── Service.java │ │ │ │ ├── ServiceException.java │ │ │ │ ├── SingleFieldBuilder.java │ │ │ │ ├── SmallSortedMap.java │ │ │ │ ├── TextFormat.java │ │ │ │ ├── UninitializedMessageException.java │ │ │ │ ├── UnknownFieldSet.java │ │ │ │ ├── UnmodifiableLazyStringList.java │ │ │ │ ├── Utf8.java │ │ │ │ └── WireFormat.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── AbstractMessageTest.java │ │ │ ├── BoundedByteStringTest.java │ │ │ ├── ByteStringTest.java │ │ │ ├── CodedInputStreamTest.java │ │ │ ├── CodedOutputStreamTest.java │ │ │ ├── DeprecatedFieldTest.java │ │ │ ├── DescriptorsTest.java │ │ │ ├── DynamicMessageTest.java │ │ │ ├── ForceFieldBuildersPreRun.java │ │ │ ├── GeneratedMessageTest.java │ │ │ ├── IsValidUtf8Test.java │ │ │ ├── IsValidUtf8TestUtil.java │ │ │ ├── LazyStringArrayListTest.java │ │ │ ├── LazyStringEndToEndTest.java │ │ │ ├── LiteTest.java │ │ │ ├── LiteralByteStringTest.java │ │ │ ├── MessageTest.java │ │ │ ├── NestedBuildersTest.java │ │ │ ├── ParserTest.java │ │ │ ├── RepeatedFieldBuilderTest.java │ │ │ ├── RopeByteStringSubstringTest.java │ │ │ ├── RopeByteStringTest.java │ │ │ ├── ServiceTest.java │ │ │ ├── SingleFieldBuilderTest.java │ │ │ ├── SmallSortedMapTest.java │ │ │ ├── TestBadIdentifiers.java │ │ │ ├── TestUtil.java │ │ │ ├── TextFormatTest.java │ │ │ ├── UnknownFieldSetTest.java │ │ │ ├── UnmodifiableLazyStringListTest.java │ │ │ ├── WireFormatTest.java │ │ │ ├── multiple_files_test.proto │ │ │ ├── nested_builders_test.proto │ │ │ ├── nested_extension.proto │ │ │ ├── nested_extension_lite.proto │ │ │ ├── non_nested_extension.proto │ │ │ ├── non_nested_extension_lite.proto │ │ │ └── test_bad_identifiers.proto │ ├── m4 │ │ ├── ac_system_extensions.m4 │ │ ├── acx_check_suncc.m4 │ │ ├── acx_pthread.m4 │ │ └── stl_hash.m4 │ ├── more_tests │ │ └── Makefile │ ├── post_process_dist.sh │ ├── protobuf-lite.pc.in │ ├── protobuf.pc.in │ ├── python │ │ ├── README.txt │ │ ├── ez_setup.py │ │ ├── google │ │ │ ├── __init__.py │ │ │ └── protobuf │ │ │ │ ├── __init__.py │ │ │ │ ├── descriptor.py │ │ │ │ ├── descriptor_database.py │ │ │ │ ├── descriptor_pool.py │ │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── api_implementation.py │ │ │ │ ├── containers.py │ │ │ │ ├── cpp_message.py │ │ │ │ ├── decoder.py │ │ │ │ ├── descriptor_database_test.py │ │ │ │ ├── descriptor_pool_test.py │ │ │ │ ├── descriptor_test.py │ │ │ │ ├── encoder.py │ │ │ │ ├── enum_type_wrapper.py │ │ │ │ ├── factory_test1.proto │ │ │ │ ├── factory_test2.proto │ │ │ │ ├── generator_test.py │ │ │ │ ├── message_cpp_test.py │ │ │ │ ├── message_factory_test.py │ │ │ │ ├── message_listener.py │ │ │ │ ├── message_test.py │ │ │ │ ├── more_extensions.proto │ │ │ │ ├── more_extensions_dynamic.proto │ │ │ │ ├── more_messages.proto │ │ │ │ ├── python_message.py │ │ │ │ ├── reflection_cpp_generated_test.py │ │ │ │ ├── reflection_test.py │ │ │ │ ├── service_reflection_test.py │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ ├── test_util.py │ │ │ │ ├── text_format_test.py │ │ │ │ ├── type_checkers.py │ │ │ │ ├── unknown_fields_test.py │ │ │ │ ├── wire_format.py │ │ │ │ └── wire_format_test.py │ │ │ │ ├── message.py │ │ │ │ ├── message_factory.py │ │ │ │ ├── pyext │ │ │ │ ├── python-proto2.cc │ │ │ │ ├── python_descriptor.cc │ │ │ │ ├── python_descriptor.h │ │ │ │ ├── python_protobuf.cc │ │ │ │ └── python_protobuf.h │ │ │ │ ├── reflection.py │ │ │ │ ├── service.py │ │ │ │ ├── service_reflection.py │ │ │ │ └── text_format.py │ │ ├── mox.py │ │ ├── setup.py │ │ └── stubout.py │ ├── src │ │ ├── Makefile.am │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── SEBS │ │ │ │ ├── compiler │ │ │ │ ├── code_generator.cc │ │ │ │ ├── code_generator.h │ │ │ │ ├── command_line_interface.cc │ │ │ │ ├── command_line_interface.h │ │ │ │ ├── command_line_interface_unittest.cc │ │ │ │ ├── cpp │ │ │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ │ │ ├── cpp_enum.cc │ │ │ │ │ ├── cpp_enum.h │ │ │ │ │ ├── cpp_enum_field.cc │ │ │ │ │ ├── cpp_enum_field.h │ │ │ │ │ ├── cpp_extension.cc │ │ │ │ │ ├── cpp_extension.h │ │ │ │ │ ├── cpp_field.cc │ │ │ │ │ ├── cpp_field.h │ │ │ │ │ ├── cpp_file.cc │ │ │ │ │ ├── cpp_file.h │ │ │ │ │ ├── cpp_generator.cc │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ ├── cpp_helpers.cc │ │ │ │ │ ├── cpp_helpers.h │ │ │ │ │ ├── cpp_message.cc │ │ │ │ │ ├── cpp_message.h │ │ │ │ │ ├── cpp_message_field.cc │ │ │ │ │ ├── cpp_message_field.h │ │ │ │ │ ├── cpp_options.h │ │ │ │ │ ├── cpp_plugin_unittest.cc │ │ │ │ │ ├── cpp_primitive_field.cc │ │ │ │ │ ├── cpp_primitive_field.h │ │ │ │ │ ├── cpp_service.cc │ │ │ │ │ ├── cpp_service.h │ │ │ │ │ ├── cpp_string_field.cc │ │ │ │ │ ├── cpp_string_field.h │ │ │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ │ │ ├── cpp_unittest.cc │ │ │ │ │ └── cpp_unittest.h │ │ │ │ ├── importer.cc │ │ │ │ ├── importer.h │ │ │ │ ├── importer_unittest.cc │ │ │ │ ├── java │ │ │ │ │ ├── java_doc_comment.cc │ │ │ │ │ ├── java_doc_comment.h │ │ │ │ │ ├── java_doc_comment_unittest.cc │ │ │ │ │ ├── java_enum.cc │ │ │ │ │ ├── java_enum.h │ │ │ │ │ ├── java_enum_field.cc │ │ │ │ │ ├── java_enum_field.h │ │ │ │ │ ├── java_extension.cc │ │ │ │ │ ├── java_extension.h │ │ │ │ │ ├── java_field.cc │ │ │ │ │ ├── java_field.h │ │ │ │ │ ├── java_file.cc │ │ │ │ │ ├── java_file.h │ │ │ │ │ ├── java_generator.cc │ │ │ │ │ ├── java_generator.h │ │ │ │ │ ├── java_helpers.cc │ │ │ │ │ ├── java_helpers.h │ │ │ │ │ ├── java_message.cc │ │ │ │ │ ├── java_message.h │ │ │ │ │ ├── java_message_field.cc │ │ │ │ │ ├── java_message_field.h │ │ │ │ │ ├── java_plugin_unittest.cc │ │ │ │ │ ├── java_primitive_field.cc │ │ │ │ │ ├── java_primitive_field.h │ │ │ │ │ ├── java_service.cc │ │ │ │ │ ├── java_service.h │ │ │ │ │ ├── java_string_field.cc │ │ │ │ │ └── java_string_field.h │ │ │ │ ├── main.cc │ │ │ │ ├── mock_code_generator.cc │ │ │ │ ├── mock_code_generator.h │ │ │ │ ├── package_info.h │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ ├── parser_unittest.cc │ │ │ │ ├── plugin.cc │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.pb.cc │ │ │ │ ├── plugin.pb.h │ │ │ │ ├── plugin.proto │ │ │ │ ├── python │ │ │ │ │ ├── python_generator.cc │ │ │ │ │ ├── python_generator.h │ │ │ │ │ └── python_plugin_unittest.cc │ │ │ │ ├── subprocess.cc │ │ │ │ ├── subprocess.h │ │ │ │ ├── test_plugin.cc │ │ │ │ ├── zip_output_unittest.sh │ │ │ │ ├── zip_writer.cc │ │ │ │ └── zip_writer.h │ │ │ │ ├── descriptor.cc │ │ │ │ ├── descriptor.h │ │ │ │ ├── descriptor.pb.cc │ │ │ │ ├── descriptor.pb.h │ │ │ │ ├── descriptor.proto │ │ │ │ ├── descriptor_database.cc │ │ │ │ ├── descriptor_database.h │ │ │ │ ├── descriptor_database_unittest.cc │ │ │ │ ├── descriptor_unittest.cc │ │ │ │ ├── dynamic_message.cc │ │ │ │ ├── dynamic_message.h │ │ │ │ ├── dynamic_message_unittest.cc │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── extension_set_heavy.cc │ │ │ │ ├── extension_set_unittest.cc │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ ├── generated_message_reflection.cc │ │ │ │ ├── generated_message_reflection.h │ │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ │ ├── generated_message_util.cc │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_inl.h │ │ │ │ ├── coded_stream_unittest.cc │ │ │ │ ├── gzip_stream.cc │ │ │ │ ├── gzip_stream.h │ │ │ │ ├── gzip_stream_unittest.sh │ │ │ │ ├── package_info.h │ │ │ │ ├── printer.cc │ │ │ │ ├── printer.h │ │ │ │ ├── printer_unittest.cc │ │ │ │ ├── tokenizer.cc │ │ │ │ ├── tokenizer.h │ │ │ │ ├── tokenizer_unittest.cc │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ │ └── zero_copy_stream_unittest.cc │ │ │ │ ├── lite_unittest.cc │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── message_unittest.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── reflection_ops.cc │ │ │ │ ├── reflection_ops.h │ │ │ │ ├── reflection_ops_unittest.cc │ │ │ │ ├── repeated_field.cc │ │ │ │ ├── repeated_field.h │ │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ │ ├── repeated_field_unittest.cc │ │ │ │ ├── service.cc │ │ │ │ ├── service.h │ │ │ │ ├── stubs │ │ │ │ ├── atomicops.h │ │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ │ ├── atomicops_internals_arm_qnx.h │ │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ │ ├── atomicops_internals_macosx.h │ │ │ │ ├── atomicops_internals_mips_gcc.h │ │ │ │ ├── atomicops_internals_pnacl.h │ │ │ │ ├── atomicops_internals_x86_gcc.cc │ │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ │ ├── atomicops_internals_x86_msvc.cc │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── common_unittest.cc │ │ │ │ ├── hash.h │ │ │ │ ├── map-util.h │ │ │ │ ├── once.cc │ │ │ │ ├── once.h │ │ │ │ ├── once_unittest.cc │ │ │ │ ├── platform_macros.h │ │ │ │ ├── stl_util.h │ │ │ │ ├── stringprintf.cc │ │ │ │ ├── stringprintf.h │ │ │ │ ├── stringprintf_unittest.cc │ │ │ │ ├── structurally_valid.cc │ │ │ │ ├── structurally_valid_unittest.cc │ │ │ │ ├── strutil.cc │ │ │ │ ├── strutil.h │ │ │ │ ├── strutil_unittest.cc │ │ │ │ ├── substitute.cc │ │ │ │ ├── substitute.h │ │ │ │ ├── template_util.h │ │ │ │ ├── template_util_unittest.cc │ │ │ │ ├── type_traits.h │ │ │ │ └── type_traits_unittest.cc │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ ├── test_util_lite.cc │ │ │ │ ├── test_util_lite.h │ │ │ │ ├── testdata │ │ │ │ ├── golden_message │ │ │ │ ├── golden_packed_fields_message │ │ │ │ ├── text_format_unittest_data.txt │ │ │ │ └── text_format_unittest_extensions_data.txt │ │ │ │ ├── testing │ │ │ │ ├── file.cc │ │ │ │ ├── file.h │ │ │ │ ├── googletest.cc │ │ │ │ ├── googletest.h │ │ │ │ ├── zcgunzip.cc │ │ │ │ └── zcgzip.cc │ │ │ │ ├── text_format.cc │ │ │ │ ├── text_format.h │ │ │ │ ├── text_format_unittest.cc │ │ │ │ ├── unittest.proto │ │ │ │ ├── unittest_custom_options.proto │ │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ │ ├── unittest_empty.proto │ │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ │ ├── unittest_import.proto │ │ │ │ ├── unittest_import_lite.proto │ │ │ │ ├── unittest_import_public.proto │ │ │ │ ├── unittest_import_public_lite.proto │ │ │ │ ├── unittest_lite.proto │ │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ │ ├── unittest_mset.proto │ │ │ │ ├── unittest_no_generic_services.proto │ │ │ │ ├── unittest_optimize_for.proto │ │ │ │ ├── unknown_field_set.cc │ │ │ │ ├── unknown_field_set.h │ │ │ │ ├── unknown_field_set_unittest.cc │ │ │ │ ├── wire_format.cc │ │ │ │ ├── wire_format.h │ │ │ │ ├── wire_format_lite.cc │ │ │ │ ├── wire_format_lite.h │ │ │ │ ├── wire_format_lite_inl.h │ │ │ │ └── wire_format_unittest.cc │ │ └── solaris │ │ │ └── libstdc++.la │ └── vsprojects │ │ ├── config.h │ │ ├── convert2008to2005.sh │ │ ├── extract_includes.bat │ │ ├── libprotobuf-lite.vcproj │ │ ├── libprotobuf.vcproj │ │ ├── libprotoc.vcproj │ │ ├── lite-test.vcproj │ │ ├── protobuf.sln │ │ ├── protoc.vcproj │ │ ├── readme.txt │ │ ├── test_plugin.vcproj │ │ └── tests.vcproj └── protobuf-current-makefile ├── platform ├── .gitignore ├── Android.cmake ├── CMakeLists.txt ├── arch.pdf ├── bindings │ ├── java │ │ ├── .gitignore │ │ ├── libs │ │ │ └── javacpp.jar │ │ ├── pom.xml │ │ └── src │ │ │ ├── diamondnotifyjava.cc │ │ │ ├── main │ │ │ └── java │ │ │ │ └── edu │ │ │ │ └── washington │ │ │ │ └── cs │ │ │ │ └── diamond │ │ │ │ ├── Diamond.java │ │ │ │ ├── DiamondUtil.java │ │ │ │ └── ReactiveManager.java │ │ │ └── test │ │ │ └── java │ │ │ └── edu │ │ │ └── washington │ │ │ └── cs │ │ │ └── diamond │ │ │ └── DiamondTest.java │ └── python │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── ReactiveManager.py │ │ ├── boost.cc │ │ └── test │ │ └── test.py ├── client │ ├── CMakeLists.txt │ ├── diamondclient.cc │ └── diamondclient.h ├── cmake │ └── Modules │ │ ├── FindLibEvent.cmake │ │ └── FindLibUV.cmake ├── common-proto.proto ├── data_types │ ├── CMakeLists.txt │ ├── boolean.cc │ ├── booleanlist.cc │ ├── counter.cc │ ├── id.cc │ ├── list.cc │ ├── long.cc │ ├── object.cc │ ├── set.cc │ ├── string.cc │ ├── stringlist.cc │ ├── stringqueue.cc │ └── stringset.cc ├── diamond-proto.proto ├── frontend │ ├── CMakeLists.txt │ ├── client.cc │ ├── client.h │ ├── server.cc │ └── server.h ├── includes │ ├── data_types.h │ ├── debug_print.h │ ├── error.h │ ├── profile.h │ ├── reactive_transactions.h │ └── transactions.h ├── latency-format.proto ├── lib │ ├── CMakeLists.txt │ ├── assert.h │ ├── configuration.cc │ ├── configuration.h │ ├── hash.h │ ├── latency.cc │ ├── latency.h │ ├── lookup3.cc │ ├── memory.cc │ ├── memory.h │ ├── message.cc │ ├── message.h │ ├── simtransport.cc │ ├── simtransport.h │ ├── tcptransport.cc │ ├── tcptransport.h │ ├── tests │ │ ├── Rules.mk │ │ ├── configuration-test-1.conf │ │ ├── configuration-test.cc │ │ ├── simtransport-test.cc │ │ └── simtransport-testmessage.proto │ ├── timestamp.h │ ├── timeval.h │ ├── transport.cc │ ├── transport.h │ ├── transportcommon.h │ ├── udptransport.cc │ └── udptransport.h ├── notification-proto.proto ├── replication │ ├── CMakeLists.txt │ ├── client.cc │ ├── client.h │ ├── common │ │ ├── CMakeLists.txt │ │ ├── client.cc │ │ ├── client.h │ │ ├── configuration.cc │ │ ├── configuration.h │ │ ├── log-impl.h │ │ ├── log.cc │ │ ├── log.h │ │ ├── quorumset.h │ │ ├── replica-inl.h │ │ ├── replica.cc │ │ ├── replica.h │ │ └── viewstamp.h │ ├── replica.cc │ └── replica.h ├── request.proto ├── store-proto.proto ├── store │ ├── CMakeLists.txt │ ├── client.cc │ ├── client.h │ ├── common │ │ ├── CMakeLists.txt │ │ ├── backend │ │ │ ├── CMakeLists.txt │ │ │ ├── commstore.cc │ │ │ ├── commstore.h │ │ │ ├── kvstore.cc │ │ │ ├── kvstore.h │ │ │ ├── pubversionstore.cc │ │ │ ├── pubversionstore.h │ │ │ ├── txnstore.h │ │ │ ├── versionstore.cc │ │ │ └── versionstore.h │ │ ├── frontend │ │ │ ├── CMakeLists.txt │ │ │ ├── asynccacheclient.cc │ │ │ ├── asynccacheclient.h │ │ │ ├── asyncclient.h │ │ │ ├── cacheclient.cc │ │ │ ├── cacheclient.h │ │ │ ├── client.h │ │ │ └── txnclient.h │ │ ├── interval.h │ │ ├── notification.h │ │ ├── promise.cc │ │ ├── promise.h │ │ ├── timestamp.h │ │ ├── tracer.cc │ │ ├── tracer.h │ │ ├── transaction.cc │ │ ├── transaction.h │ │ ├── version.cc │ │ └── version.h │ ├── occstore.cc │ ├── occstore.h │ ├── pubstore.cc │ ├── pubstore.h │ ├── server.cc │ ├── server.h │ ├── shardclient.cc │ └── shardclient.h ├── terminalclient │ ├── CMakeLists.txt │ └── terminalClient.cc ├── test │ ├── CMakeLists.txt │ ├── backend-test.cc │ ├── gce.tss.config │ ├── gce0.config │ ├── gce1.config │ ├── gce2.config │ ├── gce3.config │ ├── gce4.config │ ├── gcelocalfiveshards.tss.config │ ├── gcelocalfiveshards0.config │ ├── gcelocalfiveshards1.config │ ├── gcelocalfiveshards2.config │ ├── gcelocalfiveshards3.config │ ├── gcelocalfiveshards4.config │ ├── gcelocaloneshard.tss.config │ ├── gcelocaloneshard0.config │ ├── generate-frontend-configs.pl │ ├── local.frontend0.config │ ├── local.tss.config │ ├── local0.config │ ├── niel.frontend0.config │ ├── niel.tss.config │ ├── niel0.config │ ├── nielcharlottetown.frontend0.config │ ├── nielcharlottetown.tss.config │ ├── nielcharlottetown0.config │ ├── nielcharlottetown1.config │ ├── nielcharlottetown2.config │ ├── start_servers.sh │ ├── testallocation.cc │ ├── testlist.cc │ └── testlongallocation.cc ├── timeserver │ ├── CMakeLists.txt │ ├── timeserver.cc │ └── timeserver.h ├── toolchains │ └── android │ │ └── symlinks │ │ ├── arm-linux-androideabi-g++ │ │ └── arm-linux-androideabi-gcc ├── transactions │ ├── CMakeLists.txt │ └── transactions.cc └── vr-proto.proto └── scripts ├── README.md ├── build-scripts ├── copy-dependencies-android-eclipse.sh ├── copy-dependencies-android-studio.sh └── old │ ├── build-apps.sh │ ├── build-diamond-core.sh │ ├── build-diamond-java.sh │ └── build-everything.sh ├── experiments-eurosys-15 ├── .gitignore ├── android-chat-latency │ └── .gitignore ├── archive-data.sh ├── baseline-chat-client-wrapper.sh ├── baseline-chat-server-wrapper.sh ├── chat-program-packaging │ ├── baseline-client-package-wrapper.sh │ ├── baseline-server-package-wrapper.sh │ ├── diamond-client-package-wrapper.sh │ └── make-chat-program-package.sh ├── copy-graphs.pl ├── desktop-chat-wrapper.sh ├── desktopchat-latency │ └── .gitignore ├── desktopchat-throughput │ └── .gitignore ├── friday-121-pm.tar.gz ├── good-twitter-latency.tar.gz ├── latency-experiment.sh ├── latency-measurements.pl ├── parse-android-chat-latency-baseline.pl ├── parse-android-chat-latency-diamond.pl ├── parse-twitter-diamond.pl ├── parse-twitter-original.pl ├── plot-android-chat-latencies.R ├── plot-desktopchat-latencies.R ├── plot-desktopchat-throughput.R ├── plot-twitter-latencies.R ├── record-android-log-helper.pl ├── record-android-log.pl ├── throughput-experiment-distributed.pl ├── throughput-experiment.pl ├── thursday-1154-pm-data.tar.gz ├── thursday-morning-twitter-latency.gz ├── tuesday-evening-data.tar.gz └── twitter-latency │ └── .gitignore ├── experiments-osdi-16 ├── .gitignore ├── key_generator.py ├── parse-caching.py ├── parse-game.py ├── parse-retwis.py ├── parse-scalability.py ├── plot-baseline.pl ├── plot-caching.pl ├── plot-docc-old.pl ├── plot-docc.pl ├── plot-failure.pl ├── plot-scalability.pl ├── run-benchmark.py └── run-failure.py ├── experiments ├── README.md ├── baseline-experiment.py ├── caching-experiment.py ├── client_common.py ├── docc-experiment.py ├── experiment_common.py ├── parse-game.py ├── parse-retwis.py ├── parse-scalability.py ├── run_baseline_retwis.py ├── run_game.py ├── run_redis_game.py └── run_retwis.py ├── gce-cleanup.py ├── gce-setup-dependencies.py ├── gce ├── README.md └── docker │ ├── .gitignore │ ├── Dockerfile │ ├── baseline-caching-experiment.pl │ ├── baseline-experiment.pl │ ├── build-everything.pl │ ├── build-kubernetes.pl │ ├── caching-experiment.pl │ ├── cleanup.pl │ ├── clusters.txt │ ├── docc-experiment.pl │ ├── experiment_common.py │ ├── gcelocalfiveshards.frontend0.config │ ├── gcelocalfiveshards.frontend1.config │ ├── gcelocalfiveshards.frontend10.config │ ├── gcelocalfiveshards.frontend11.config │ ├── gcelocalfiveshards.frontend12.config │ ├── gcelocalfiveshards.frontend13.config │ ├── gcelocalfiveshards.frontend14.config │ ├── gcelocalfiveshards.frontend15.config │ ├── gcelocalfiveshards.frontend2.config │ ├── gcelocalfiveshards.frontend3.config │ ├── gcelocalfiveshards.frontend4.config │ ├── gcelocalfiveshards.frontend5.config │ ├── gcelocalfiveshards.frontend6.config │ ├── gcelocalfiveshards.frontend7.config │ ├── gcelocalfiveshards.frontend8.config │ ├── gcelocalfiveshards.frontend9.config │ ├── gcelocaloneshard.frontend0.config │ ├── gcelocaloneshard.frontend1.config │ ├── gcelocaloneshard.frontend10.config │ ├── gcelocaloneshard.frontend11.config │ ├── gcelocaloneshard.frontend12.config │ ├── gcelocaloneshard.frontend13.config │ ├── gcelocaloneshard.frontend14.config │ ├── gcelocaloneshard.frontend15.config │ ├── gcelocaloneshard.frontend2.config │ ├── gcelocaloneshard.frontend3.config │ ├── gcelocaloneshard.frontend4.config │ ├── gcelocaloneshard.frontend5.config │ ├── gcelocaloneshard.frontend6.config │ ├── gcelocaloneshard.frontend7.config │ ├── gcelocaloneshard.frontend8.config │ ├── gcelocaloneshard.frontend9.config │ ├── kubectl-delete-job.pl │ ├── kubectl-get-pods.pl │ ├── kubectl-logs.pl │ ├── kubernetes-login.pl │ ├── retwis-baseline-experiment.pl │ ├── retwis-docc-experiment.pl │ ├── run-experiment.pl │ ├── run-kubernetes-job.pl │ ├── run_baseline.py │ ├── run_baseline_retwis.py │ ├── run_benchclient.py │ ├── run_caching.py │ ├── run_docc.py │ ├── run_game.py │ ├── run_redis_game.py │ ├── run_retwis.py │ ├── run_scalability.py │ ├── run_terminalclient.py │ ├── sanity-checks.pl │ └── scalability-experiment.pl └── manage-servers.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/.gitignore -------------------------------------------------------------------------------- /apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/README.md -------------------------------------------------------------------------------- /apps/baseline-benchmarks/100game/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/baseline-benchmarks/100game/CMakeLists.txt -------------------------------------------------------------------------------- /apps/baseline-benchmarks/100game/game-redis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/baseline-benchmarks/100game/game-redis.cc -------------------------------------------------------------------------------- /apps/baseline-benchmarks/keyvaluestore/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | .classpath 3 | .project 4 | .settings 5 | -------------------------------------------------------------------------------- /apps/baseline-benchmarks/keyvaluestore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/baseline-benchmarks/keyvaluestore/pom.xml -------------------------------------------------------------------------------- /apps/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /apps/benchmarks/benchmark_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/benchmark_common.cc -------------------------------------------------------------------------------- /apps/benchmarks/benchmark_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/benchmark_common.h -------------------------------------------------------------------------------- /apps/benchmarks/benchmarkclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/benchmarkclient.cc -------------------------------------------------------------------------------- /apps/benchmarks/caching.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/caching.cc -------------------------------------------------------------------------------- /apps/benchmarks/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/debug.cc -------------------------------------------------------------------------------- /apps/benchmarks/docc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/docc.cc -------------------------------------------------------------------------------- /apps/benchmarks/game.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/game.cc -------------------------------------------------------------------------------- /apps/benchmarks/notification_publisher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/notification_publisher.cc -------------------------------------------------------------------------------- /apps/benchmarks/notification_subscriber.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/notification_subscriber.cc -------------------------------------------------------------------------------- /apps/benchmarks/oldcaching.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/oldcaching.cc -------------------------------------------------------------------------------- /apps/benchmarks/scalability.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/scalability.cc -------------------------------------------------------------------------------- /apps/benchmarks/settest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/benchmarks/settest.cc -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaseline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/AndroidChatBaseline/.gitignore -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaseline/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/AndroidChatBaseline/app/build.gradle -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaseline/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/AndroidChatBaseline/build.gradle -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaseline/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/AndroidChatBaseline/gradlew -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaseline/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/AndroidChatBaseline/gradlew.bat -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaseline/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaselineBenchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/AndroidChatBaselineBenchmark/.gitignore -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaselineBenchmark/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/AndroidChatBaselineBenchmark/gradlew -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaselineBenchmark/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/AndroidChatBaselineBenchmark/gradlew.bat -------------------------------------------------------------------------------- /apps/chat/AndroidChatBaselineBenchmark/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apps/chat/BaselineChatClient/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatClient/.classpath -------------------------------------------------------------------------------- /apps/chat/BaselineChatClient/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /apps/chat/BaselineChatClient/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatClient/.project -------------------------------------------------------------------------------- /apps/chat/BaselineChatClient/libs/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatClient/libs/gson-2.3.1.jar -------------------------------------------------------------------------------- /apps/chat/BaselineChatServer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatServer/.classpath -------------------------------------------------------------------------------- /apps/chat/BaselineChatServer/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /src/*.class 3 | -------------------------------------------------------------------------------- /apps/chat/BaselineChatServer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatServer/.project -------------------------------------------------------------------------------- /apps/chat/BaselineChatServer/libs/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatServer/libs/gson-2.3.1.jar -------------------------------------------------------------------------------- /apps/chat/BaselineChatServer/libs/jedis-2.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatServer/libs/jedis-2.4.2.jar -------------------------------------------------------------------------------- /apps/chat/BaselineChatServer/make.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatServer/make.pl -------------------------------------------------------------------------------- /apps/chat/BaselineChatServer/run-server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatServer/run-server.pl -------------------------------------------------------------------------------- /apps/chat/BaselineChatServer/src/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/BaselineChatServer/src/MANIFEST.MF -------------------------------------------------------------------------------- /apps/chat/DesktopChat/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DesktopChat/.classpath -------------------------------------------------------------------------------- /apps/chat/DesktopChat/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /libs/ 3 | -------------------------------------------------------------------------------- /apps/chat/DesktopChat/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DesktopChat/.project -------------------------------------------------------------------------------- /apps/chat/DesktopChat/src/DesktopChatClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DesktopChat/src/DesktopChatClient.java -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/.classpath -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /gen/ 3 | -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/.project -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/ic_launcher-web.png -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/libs/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.dylib 3 | *.jar 4 | /armeabi/ 5 | -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/proguard-project.txt -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/project.properties -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/res/menu/main.xml -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/res/values/dimens.xml -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/res/values/strings.xml -------------------------------------------------------------------------------- /apps/chat/DiamondChat-old/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat-old/res/values/styles.xml -------------------------------------------------------------------------------- /apps/chat/DiamondChat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat/.gitignore -------------------------------------------------------------------------------- /apps/chat/DiamondChat/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat/app/build.gradle -------------------------------------------------------------------------------- /apps/chat/DiamondChat/app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat/app/lint.xml -------------------------------------------------------------------------------- /apps/chat/DiamondChat/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat/build.gradle -------------------------------------------------------------------------------- /apps/chat/DiamondChat/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat/gradlew -------------------------------------------------------------------------------- /apps/chat/DiamondChat/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChat/gradlew.bat -------------------------------------------------------------------------------- /apps/chat/DiamondChat/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apps/chat/DiamondChatBenchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChatBenchmark/.gitignore -------------------------------------------------------------------------------- /apps/chat/DiamondChatBenchmark/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChatBenchmark/app/build.gradle -------------------------------------------------------------------------------- /apps/chat/DiamondChatBenchmark/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChatBenchmark/build.gradle -------------------------------------------------------------------------------- /apps/chat/DiamondChatBenchmark/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChatBenchmark/gradlew -------------------------------------------------------------------------------- /apps/chat/DiamondChatBenchmark/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/chat/DiamondChatBenchmark/gradlew.bat -------------------------------------------------------------------------------- /apps/chat/DiamondChatBenchmark/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apps/demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/demo/CMakeLists.txt -------------------------------------------------------------------------------- /apps/demo/demo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/demo/demo.cc -------------------------------------------------------------------------------- /apps/notes/NotesReactive/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/.classpath -------------------------------------------------------------------------------- /apps/notes/NotesReactive/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | .settings/ 3 | -------------------------------------------------------------------------------- /apps/notes/NotesReactive/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/.project -------------------------------------------------------------------------------- /apps/notes/NotesReactive/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/ic_launcher-web.png -------------------------------------------------------------------------------- /apps/notes/NotesReactive/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/project.properties -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/layout/add_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/layout/add_note.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/layout/shownotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/layout/shownotes.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/menu/edit_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/menu/edit_note.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/menu/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/menu/login.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/menu/main.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/menu/sign_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/menu/sign_up.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/values-v11/styles.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/values-v14/styles.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/values/dimens.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/values/strings.xml -------------------------------------------------------------------------------- /apps/notes/NotesReactive/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesReactive/res/values/styles.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/.classpath -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | .settings/ 3 | -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/.project -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/app.js~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/app.js~ -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/ic_launcher-web.png -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/libs/Parse-1.13.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/libs/Parse-1.13.0.jar -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/lint.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/npm-debug.log -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/package.json~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/package.json~ -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/.gitignore -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/Dockerfile -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/README.md -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/app.json -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/azuredeploy.json -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/cloud/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/cloud/main.js -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/index.js -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/jsconfig.json -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/package.json -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/parse/scalingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/parse/scalingo.json -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/proguard-project.txt -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/project.properties -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/res/layout/add_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/res/layout/add_note.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/res/menu/edit_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/res/menu/edit_note.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/res/menu/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/res/menu/login.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/res/menu/main.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/res/menu/sign_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/res/menu/sign_up.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/res/values/dimens.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/res/values/strings.xml -------------------------------------------------------------------------------- /apps/notes/NotesUnreactive/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/notes/NotesUnreactive/res/values/styles.xml -------------------------------------------------------------------------------- /apps/parse/DiamondParse/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/parse/DiamondParse/.gitignore -------------------------------------------------------------------------------- /apps/parse/DiamondParse/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /apps/parse/DiamondParse/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/parse/DiamondParse/app/build.gradle -------------------------------------------------------------------------------- /apps/parse/DiamondParse/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/parse/DiamondParse/app/proguard-rules.pro -------------------------------------------------------------------------------- /apps/parse/DiamondParse/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/parse/DiamondParse/build.gradle -------------------------------------------------------------------------------- /apps/parse/DiamondParse/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/parse/DiamondParse/gradle.properties -------------------------------------------------------------------------------- /apps/parse/DiamondParse/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/parse/DiamondParse/gradlew -------------------------------------------------------------------------------- /apps/parse/DiamondParse/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/parse/DiamondParse/gradlew.bat -------------------------------------------------------------------------------- /apps/parse/DiamondParse/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apps/parse/Parse-Starter-Project-1.13.0/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | local.properties 4 | build 5 | *.iml 6 | -------------------------------------------------------------------------------- /apps/parse/Parse-Starter-Project-1.13.0/ParseTest/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.iml 3 | -------------------------------------------------------------------------------- /apps/parse/Parse-Starter-Project-1.13.0/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/parse/Parse-Starter-Project-1.13.0/gradlew -------------------------------------------------------------------------------- /apps/parse/Parse-Starter-Project-1.13.0/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':ParseTest' 2 | -------------------------------------------------------------------------------- /apps/pyscrabble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/README.md -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/.gitignore -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/CHANGELOG.txt -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/LICENSE.txt -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/PKG-INFO -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/README.txt -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/db_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/db_upgrade.py -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/pyscrabble/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/pyscrabble/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/pyscrabble/db.py -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/pyscrabble/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/pyscrabble/net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/server_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/server_console.py -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-1.6.2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-1.6.2/setup.py -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet-diamond/pyscrabble/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet-diamond/pyscrabble/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet-original/pyscrabble/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet-original/pyscrabble/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet-original/pyscrabble/net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-hatchet/.gitignore -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-hatchet/CHANGELOG.txt -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-hatchet/LICENSE.txt -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-hatchet/PKG-INFO -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-hatchet/README.txt -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/pyscrabble/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/pyscrabble/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/pyscrabble/net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pyscrabble/pyscrabble-hatchet/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/pyscrabble/pyscrabble-hatchet/setup.py -------------------------------------------------------------------------------- /apps/simplegame/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/simplegame/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /apps/simplegame/cpp/game.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/simplegame/cpp/game.cc -------------------------------------------------------------------------------- /apps/simplegame/python/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/simplegame/python/game.py -------------------------------------------------------------------------------- /apps/simplegame/redis-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/simplegame/redis-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /apps/simplegame/redis-cpp/game-redis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/simplegame/redis-cpp/game-redis.cc -------------------------------------------------------------------------------- /apps/tapir-benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/tapir-benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /apps/tapir-benchmarks/benchClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/tapir-benchmarks/benchClient.cc -------------------------------------------------------------------------------- /apps/tapir-benchmarks/retwisClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/tapir-benchmarks/retwisClient.cc -------------------------------------------------------------------------------- /apps/tapir-benchmarks/terminalClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/tapir-benchmarks/terminalClient.cc -------------------------------------------------------------------------------- /apps/test-apps/DiamondAndroidTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/DiamondAndroidTest/.gitignore -------------------------------------------------------------------------------- /apps/test-apps/DiamondAndroidTest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/DiamondAndroidTest/app/build.gradle -------------------------------------------------------------------------------- /apps/test-apps/DiamondAndroidTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/DiamondAndroidTest/build.gradle -------------------------------------------------------------------------------- /apps/test-apps/DiamondAndroidTest/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/DiamondAndroidTest/gradlew -------------------------------------------------------------------------------- /apps/test-apps/DiamondAndroidTest/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/DiamondAndroidTest/gradlew.bat -------------------------------------------------------------------------------- /apps/test-apps/DiamondAndroidTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apps/test-apps/DiamondJavaTest/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/DiamondJavaTest/.classpath -------------------------------------------------------------------------------- /apps/test-apps/DiamondJavaTest/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | .settings 3 | -------------------------------------------------------------------------------- /apps/test-apps/DiamondJavaTest/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/DiamondJavaTest/.project -------------------------------------------------------------------------------- /apps/test-apps/DiamondJavaTest/libs/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar 2 | *.so 3 | *.dylib 4 | -------------------------------------------------------------------------------- /apps/test-apps/DiamondJavaTest/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/DiamondJavaTest/src/Main.java -------------------------------------------------------------------------------- /apps/test-apps/cpp-reactive-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/cpp-reactive-test/CMakeLists.txt -------------------------------------------------------------------------------- /apps/test-apps/cpp-reactive-test/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/cpp-reactive-test/client.cc -------------------------------------------------------------------------------- /apps/test-apps/cpp-reactive-test/publisher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/cpp-reactive-test/publisher.cc -------------------------------------------------------------------------------- /apps/test-apps/java-reactive-test/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | -------------------------------------------------------------------------------- /apps/test-apps/java-reactive-test/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/java-reactive-test/Client.java -------------------------------------------------------------------------------- /apps/test-apps/java-reactive-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/java-reactive-test/Makefile -------------------------------------------------------------------------------- /apps/test-apps/java-reactive-test/Publisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/java-reactive-test/Publisher.java -------------------------------------------------------------------------------- /apps/test-apps/java-reactive-test/run-client.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/java-reactive-test/run-client.pl -------------------------------------------------------------------------------- /apps/test-apps/java-reactive-test/run-publisher.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/java-reactive-test/run-publisher.pl -------------------------------------------------------------------------------- /apps/test-apps/python-reactive-test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/python-reactive-test/client.py -------------------------------------------------------------------------------- /apps/test-apps/python-reactive-test/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/test-apps/python-reactive-test/publisher.py -------------------------------------------------------------------------------- /apps/twitter/TwitterBackend/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /apps/twitter/TwitterBackend/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/TwitterBackend/.project -------------------------------------------------------------------------------- /apps/twitter/TwitterBackend/libs/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/TwitterBackend/libs/gson-2.3.1.jar -------------------------------------------------------------------------------- /apps/twitter/TwitterBackend/libs/jedis-2.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/TwitterBackend/libs/jedis-2.4.2.jar -------------------------------------------------------------------------------- /apps/twitter/TwitterBackend/src/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/TwitterBackend/src/main/Main.java -------------------------------------------------------------------------------- /apps/twitter/TwitterBackend/src/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/TwitterBackend/src/utils/Utils.java -------------------------------------------------------------------------------- /apps/twitter/backend-diamond/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/backend-diamond/.classpath -------------------------------------------------------------------------------- /apps/twitter/backend-diamond/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /libs/* 3 | -------------------------------------------------------------------------------- /apps/twitter/backend-diamond/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/backend-diamond/.project -------------------------------------------------------------------------------- /apps/twitter/backend-diamond/libs/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/backend-diamond/libs/gson-2.3.1.jar -------------------------------------------------------------------------------- /apps/twitter/backend-diamond/libs/jedis-2.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/backend-diamond/libs/jedis-2.4.2.jar -------------------------------------------------------------------------------- /apps/twitter/backend-diamond/src/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/backend-diamond/src/main/Main.java -------------------------------------------------------------------------------- /apps/twitter/backend-diamond/src/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/backend-diamond/src/utils/Utils.java -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/AboutController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/AboutController.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/AboutController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/AboutController.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/ImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/ImageLoader.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/ImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/ImageLoader.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/ImagePreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/ImagePreview.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/ImagePreview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/ImagePreview.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/MGConnectionWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/MGConnectionWrap.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/MGConnectionWrap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/MGConnectionWrap.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/MessageUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/MessageUploader.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/MessageUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/MessageUploader.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/SelectImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/SelectImageSource.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/SelectImageSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/SelectImageSource.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/TapScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/TapScrollView.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/TapScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/TapScrollView.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/TweetPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/TweetPlayer.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/TweetPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/TweetPlayer.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/TweetQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/TweetQueue.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/TweetQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/TweetQueue.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/UserInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/UserInfo.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/UserInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/UserInfo.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/WebViewController.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/WebViewController.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/yFrogImageUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/yFrogImageUploader.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/Classes/yFrogImageUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Classes/yFrogImageUploader.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/About.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/About.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/ImageView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/ImageView.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/Login.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/Login.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/MainWindow.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/NewMessage.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/NewMessage.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/PostImage.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/PostImage.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/TweetQueue.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/TweetQueue.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/UserInfo.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/UserInfo.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/English.lproj/WebView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/English.lproj/WebView.xib -------------------------------------------------------------------------------- /apps/twitter/tweetero/Frog.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Frog.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/HomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/HomeViewController.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/HomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/HomeViewController.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Info.plist -------------------------------------------------------------------------------- /apps/twitter/tweetero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/LICENSE.txt -------------------------------------------------------------------------------- /apps/twitter/tweetero/LocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/LocationManager.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/LocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/LocationManager.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/LoginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/LoginController.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/LoginController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/LoginController.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/MGTwitterEngine/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/MGTwitterEngine/LICENSE.txt -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/About.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/About.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/Archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/Archive.zip -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/Queue.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/Queue.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/Replies.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/Replies.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/camera.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/camera.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/library.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/library.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/map.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/map.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/remove.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/remove.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/settings.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/settings.psd -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/trash.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/trash.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/yfrog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/yfrog.png -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/yfrog.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/yfrog.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/Resource/Images/yfrog1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Resource/Images/yfrog1.png -------------------------------------------------------------------------------- /apps/twitter/tweetero/SettingsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/SettingsController.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/SettingsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/SettingsController.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/Tweetter_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/Tweetter_Prefix.pch -------------------------------------------------------------------------------- /apps/twitter/tweetero/TwitEditorController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/TwitEditorController.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/TwitEditorController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/TwitEditorController.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/TwitterConnectionProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/TwitterConnectionProtocol.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/defaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/defaults.plist -------------------------------------------------------------------------------- /apps/twitter/tweetero/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/main.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/release/512icon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/release/512icon.tiff -------------------------------------------------------------------------------- /apps/twitter/tweetero/release/screenshots/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/release/screenshots/main.jpg -------------------------------------------------------------------------------- /apps/twitter/tweetero/release/screenshots/more.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/release/screenshots/more.jpg -------------------------------------------------------------------------------- /apps/twitter/tweetero/release/tweetero-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/release/tweetero-1.0.zip -------------------------------------------------------------------------------- /apps/twitter/tweetero/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/util.h -------------------------------------------------------------------------------- /apps/twitter/tweetero/util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/util.m -------------------------------------------------------------------------------- /apps/twitter/tweetero/yfrog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/tweetero/yfrog.png -------------------------------------------------------------------------------- /apps/twitter/twimight-diamond-old/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-diamond-old/.classpath -------------------------------------------------------------------------------- /apps/twitter/twimight-diamond-old/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | .settings/ 3 | -------------------------------------------------------------------------------- /apps/twitter/twimight-diamond-old/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-diamond-old/.project -------------------------------------------------------------------------------- /apps/twitter/twimight-diamond-old/assets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/twitter/twimight-diamond-old/libs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-diamond-old/libs/.gitignore -------------------------------------------------------------------------------- /apps/twitter/twimight-diamond-old/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-diamond-old/proguard.cfg -------------------------------------------------------------------------------- /apps/twitter/twimight-diamond-old/res/raw/rootkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-diamond-old/res/raw/rootkey -------------------------------------------------------------------------------- /apps/twitter/twimight-hatchet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-hatchet/.gitignore -------------------------------------------------------------------------------- /apps/twitter/twimight-hatchet/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-hatchet/app/build.gradle -------------------------------------------------------------------------------- /apps/twitter/twimight-hatchet/app/src/main/assets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/twitter/twimight-hatchet/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-hatchet/build.gradle -------------------------------------------------------------------------------- /apps/twitter/twimight-hatchet/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-hatchet/gradlew -------------------------------------------------------------------------------- /apps/twitter/twimight-hatchet/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight-hatchet/gradlew.bat -------------------------------------------------------------------------------- /apps/twitter/twimight-hatchet/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /apps/twitter/twimight/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/.classpath -------------------------------------------------------------------------------- /apps/twitter/twimight/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | .settings/ 3 | -------------------------------------------------------------------------------- /apps/twitter/twimight/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/.project -------------------------------------------------------------------------------- /apps/twitter/twimight/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/assets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/twitter/twimight/libs/android-support-v13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/libs/android-support-v13.jar -------------------------------------------------------------------------------- /apps/twitter/twimight/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/proguard.cfg -------------------------------------------------------------------------------- /apps/twitter/twimight/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/project.properties -------------------------------------------------------------------------------- /apps/twitter/twimight/res/drawable/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/drawable/blank.png -------------------------------------------------------------------------------- /apps/twitter/twimight/res/drawable/border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/drawable/border.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/drawable/divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/drawable/divider.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/drawable/galaxys3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/drawable/galaxys3.jpg -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/apprater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/apprater.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/dmrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/dmrow.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/dmuserrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/dmuserrow.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/login.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/main.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/new_dm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/new_dm.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/row.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/show_raffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/show_raffle.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/show_tips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/show_tips.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/showabout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/showabout.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/showsearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/showsearch.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/showtweet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/showtweet.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/showuser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/showuser.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/tweet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/tweet.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/userrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/userrow.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/layout/webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/layout/webview.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/menu/main_menu.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/raw/rootkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/raw/rootkey -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values-de/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values-de/arrays.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values-de/strings.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values-it/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values-it/arrays.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values-it/strings.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values-land/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values-land/themes.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values/arrays.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values/colors.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values/strings.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values/styles.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/values/themes.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/xml/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/xml/prefs.xml -------------------------------------------------------------------------------- /apps/twitter/twimight/res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/apps/twitter/twimight/res/xml/searchable.xml -------------------------------------------------------------------------------- /external/libevent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/.gitignore -------------------------------------------------------------------------------- /external/libevent/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/.travis.yml -------------------------------------------------------------------------------- /external/libevent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/CMakeLists.txt -------------------------------------------------------------------------------- /external/libevent/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/ChangeLog -------------------------------------------------------------------------------- /external/libevent/ChangeLog-1.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/ChangeLog-1.4 -------------------------------------------------------------------------------- /external/libevent/ChangeLog-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/ChangeLog-2.0 -------------------------------------------------------------------------------- /external/libevent/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/Doxyfile -------------------------------------------------------------------------------- /external/libevent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/LICENSE -------------------------------------------------------------------------------- /external/libevent/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/Makefile.am -------------------------------------------------------------------------------- /external/libevent/Makefile.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/Makefile.nmake -------------------------------------------------------------------------------- /external/libevent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/README.md -------------------------------------------------------------------------------- /external/libevent/WIN32-Code/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/WIN32-Code/getopt.c -------------------------------------------------------------------------------- /external/libevent/WIN32-Code/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/WIN32-Code/getopt.h -------------------------------------------------------------------------------- /external/libevent/WIN32-Code/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/WIN32-Code/getopt_long.c -------------------------------------------------------------------------------- /external/libevent/WIN32-Code/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/WIN32-Code/tree.h -------------------------------------------------------------------------------- /external/libevent/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/appveyor.yml -------------------------------------------------------------------------------- /external/libevent/arc4random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/arc4random.c -------------------------------------------------------------------------------- /external/libevent/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/autogen.sh -------------------------------------------------------------------------------- /external/libevent/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/buffer.c -------------------------------------------------------------------------------- /external/libevent/buffer_iocp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/buffer_iocp.c -------------------------------------------------------------------------------- /external/libevent/bufferevent-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/bufferevent-internal.h -------------------------------------------------------------------------------- /external/libevent/bufferevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/bufferevent.c -------------------------------------------------------------------------------- /external/libevent/bufferevent_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/bufferevent_async.c -------------------------------------------------------------------------------- /external/libevent/bufferevent_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/bufferevent_filter.c -------------------------------------------------------------------------------- /external/libevent/bufferevent_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/bufferevent_openssl.c -------------------------------------------------------------------------------- /external/libevent/bufferevent_pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/bufferevent_pair.c -------------------------------------------------------------------------------- /external/libevent/bufferevent_ratelim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/bufferevent_ratelim.c -------------------------------------------------------------------------------- /external/libevent/bufferevent_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/bufferevent_sock.c -------------------------------------------------------------------------------- /external/libevent/changelist-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/changelist-internal.h -------------------------------------------------------------------------------- /external/libevent/cmake/AddCompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/AddCompilerFlags.cmake -------------------------------------------------------------------------------- /external/libevent/cmake/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /external/libevent/cmake/CheckFileOffsetBits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/CheckFileOffsetBits.c -------------------------------------------------------------------------------- /external/libevent/cmake/CheckFunctionExistsEx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/CheckFunctionExistsEx.c -------------------------------------------------------------------------------- /external/libevent/cmake/CheckWorkingKqueue.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/CheckWorkingKqueue.cmake -------------------------------------------------------------------------------- /external/libevent/cmake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/CodeCoverage.cmake -------------------------------------------------------------------------------- /external/libevent/cmake/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/Copyright.txt -------------------------------------------------------------------------------- /external/libevent/cmake/FindGit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/FindGit.cmake -------------------------------------------------------------------------------- /external/libevent/cmake/LibeventConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/LibeventConfig.cmake.in -------------------------------------------------------------------------------- /external/libevent/cmake/VersionViaGit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/cmake/VersionViaGit.cmake -------------------------------------------------------------------------------- /external/libevent/compat/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/compat/sys/queue.h -------------------------------------------------------------------------------- /external/libevent/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/configure.ac -------------------------------------------------------------------------------- /external/libevent/defer-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/defer-internal.h -------------------------------------------------------------------------------- /external/libevent/devpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/devpoll.c -------------------------------------------------------------------------------- /external/libevent/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/epoll.c -------------------------------------------------------------------------------- /external/libevent/epoll_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/epoll_sub.c -------------------------------------------------------------------------------- /external/libevent/epolltable-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/epolltable-internal.h -------------------------------------------------------------------------------- /external/libevent/evbuffer-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evbuffer-internal.h -------------------------------------------------------------------------------- /external/libevent/evconfig-private.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evconfig-private.h.cmake -------------------------------------------------------------------------------- /external/libevent/evconfig-private.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evconfig-private.h.in -------------------------------------------------------------------------------- /external/libevent/evdns.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evdns.3 -------------------------------------------------------------------------------- /external/libevent/evdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evdns.c -------------------------------------------------------------------------------- /external/libevent/event-config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/event-config.h.cmake -------------------------------------------------------------------------------- /external/libevent/event-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/event-internal.h -------------------------------------------------------------------------------- /external/libevent/event.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/event.3 -------------------------------------------------------------------------------- /external/libevent/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/event.c -------------------------------------------------------------------------------- /external/libevent/event_iocp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/event_iocp.c -------------------------------------------------------------------------------- /external/libevent/event_rpcgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/event_rpcgen.py -------------------------------------------------------------------------------- /external/libevent/event_tagging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/event_tagging.c -------------------------------------------------------------------------------- /external/libevent/evmap-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evmap-internal.h -------------------------------------------------------------------------------- /external/libevent/evmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evmap.c -------------------------------------------------------------------------------- /external/libevent/evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evport.c -------------------------------------------------------------------------------- /external/libevent/evrpc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evrpc-internal.h -------------------------------------------------------------------------------- /external/libevent/evrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evrpc.c -------------------------------------------------------------------------------- /external/libevent/evsignal-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evsignal-internal.h -------------------------------------------------------------------------------- /external/libevent/evthread-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evthread-internal.h -------------------------------------------------------------------------------- /external/libevent/evthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evthread.c -------------------------------------------------------------------------------- /external/libevent/evthread_pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evthread_pthread.c -------------------------------------------------------------------------------- /external/libevent/evthread_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evthread_win32.c -------------------------------------------------------------------------------- /external/libevent/evutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evutil.c -------------------------------------------------------------------------------- /external/libevent/evutil_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evutil_rand.c -------------------------------------------------------------------------------- /external/libevent/evutil_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/evutil_time.c -------------------------------------------------------------------------------- /external/libevent/ht-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/ht-internal.h -------------------------------------------------------------------------------- /external/libevent/http-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/http-internal.h -------------------------------------------------------------------------------- /external/libevent/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/http.c -------------------------------------------------------------------------------- /external/libevent/include/evdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/evdns.h -------------------------------------------------------------------------------- /external/libevent/include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event.h -------------------------------------------------------------------------------- /external/libevent/include/event2/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/buffer.h -------------------------------------------------------------------------------- /external/libevent/include/event2/buffer_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/buffer_compat.h -------------------------------------------------------------------------------- /external/libevent/include/event2/bufferevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/bufferevent.h -------------------------------------------------------------------------------- /external/libevent/include/event2/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/dns.h -------------------------------------------------------------------------------- /external/libevent/include/event2/dns_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/dns_compat.h -------------------------------------------------------------------------------- /external/libevent/include/event2/dns_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/dns_struct.h -------------------------------------------------------------------------------- /external/libevent/include/event2/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/event.h -------------------------------------------------------------------------------- /external/libevent/include/event2/event_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/event_compat.h -------------------------------------------------------------------------------- /external/libevent/include/event2/event_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/event_struct.h -------------------------------------------------------------------------------- /external/libevent/include/event2/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/http.h -------------------------------------------------------------------------------- /external/libevent/include/event2/http_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/http_compat.h -------------------------------------------------------------------------------- /external/libevent/include/event2/http_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/http_struct.h -------------------------------------------------------------------------------- /external/libevent/include/event2/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/listener.h -------------------------------------------------------------------------------- /external/libevent/include/event2/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/rpc.h -------------------------------------------------------------------------------- /external/libevent/include/event2/rpc_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/rpc_compat.h -------------------------------------------------------------------------------- /external/libevent/include/event2/rpc_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/rpc_struct.h -------------------------------------------------------------------------------- /external/libevent/include/event2/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/tag.h -------------------------------------------------------------------------------- /external/libevent/include/event2/tag_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/tag_compat.h -------------------------------------------------------------------------------- /external/libevent/include/event2/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/thread.h -------------------------------------------------------------------------------- /external/libevent/include/event2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/util.h -------------------------------------------------------------------------------- /external/libevent/include/event2/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/event2/visibility.h -------------------------------------------------------------------------------- /external/libevent/include/evhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/evhttp.h -------------------------------------------------------------------------------- /external/libevent/include/evrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/evrpc.h -------------------------------------------------------------------------------- /external/libevent/include/evutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/evutil.h -------------------------------------------------------------------------------- /external/libevent/include/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/include/include.am -------------------------------------------------------------------------------- /external/libevent/iocp-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/iocp-internal.h -------------------------------------------------------------------------------- /external/libevent/ipv6-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/ipv6-internal.h -------------------------------------------------------------------------------- /external/libevent/kqueue-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/kqueue-internal.h -------------------------------------------------------------------------------- /external/libevent/kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/kqueue.c -------------------------------------------------------------------------------- /external/libevent/libevent.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/libevent.pc.in -------------------------------------------------------------------------------- /external/libevent/libevent_openssl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/libevent_openssl.pc.in -------------------------------------------------------------------------------- /external/libevent/libevent_pthreads.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/libevent_pthreads.pc.in -------------------------------------------------------------------------------- /external/libevent/listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/listener.c -------------------------------------------------------------------------------- /external/libevent/log-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/log-internal.h -------------------------------------------------------------------------------- /external/libevent/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/log.c -------------------------------------------------------------------------------- /external/libevent/m4/ac_backport_259_ssizet.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/m4/ac_backport_259_ssizet.m4 -------------------------------------------------------------------------------- /external/libevent/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /external/libevent/m4/libevent_openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/m4/libevent_openssl.m4 -------------------------------------------------------------------------------- /external/libevent/m4/ntp_pkg_config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/m4/ntp_pkg_config.m4 -------------------------------------------------------------------------------- /external/libevent/make-event-config.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/make-event-config.sed -------------------------------------------------------------------------------- /external/libevent/make_epoll_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/make_epoll_table.py -------------------------------------------------------------------------------- /external/libevent/minheap-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/minheap-internal.h -------------------------------------------------------------------------------- /external/libevent/mm-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/mm-internal.h -------------------------------------------------------------------------------- /external/libevent/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/poll.c -------------------------------------------------------------------------------- /external/libevent/ratelim-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/ratelim-internal.h -------------------------------------------------------------------------------- /external/libevent/sample/dns-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/dns-example.c -------------------------------------------------------------------------------- /external/libevent/sample/event-read-fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/event-read-fifo.c -------------------------------------------------------------------------------- /external/libevent/sample/hello-world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/hello-world.c -------------------------------------------------------------------------------- /external/libevent/sample/hostcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/hostcheck.c -------------------------------------------------------------------------------- /external/libevent/sample/hostcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/hostcheck.h -------------------------------------------------------------------------------- /external/libevent/sample/http-connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/http-connect.c -------------------------------------------------------------------------------- /external/libevent/sample/http-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/http-server.c -------------------------------------------------------------------------------- /external/libevent/sample/https-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/https-client.c -------------------------------------------------------------------------------- /external/libevent/sample/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/include.am -------------------------------------------------------------------------------- /external/libevent/sample/le-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/le-proxy.c -------------------------------------------------------------------------------- /external/libevent/sample/signal-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/signal-test.c -------------------------------------------------------------------------------- /external/libevent/sample/time-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/sample/time-test.c -------------------------------------------------------------------------------- /external/libevent/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/select.c -------------------------------------------------------------------------------- /external/libevent/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/signal.c -------------------------------------------------------------------------------- /external/libevent/strlcpy-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/strlcpy-internal.h -------------------------------------------------------------------------------- /external/libevent/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/strlcpy.c -------------------------------------------------------------------------------- /external/libevent/test/Makefile.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/Makefile.nmake -------------------------------------------------------------------------------- /external/libevent/test/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/bench.c -------------------------------------------------------------------------------- /external/libevent/test/bench_cascade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/bench_cascade.c -------------------------------------------------------------------------------- /external/libevent/test/bench_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/bench_http.c -------------------------------------------------------------------------------- /external/libevent/test/bench_httpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/bench_httpclient.c -------------------------------------------------------------------------------- /external/libevent/test/check-dumpevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/check-dumpevents.py -------------------------------------------------------------------------------- /external/libevent/test/include.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/include.am -------------------------------------------------------------------------------- /external/libevent/test/print-winsock-errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/print-winsock-errors.c -------------------------------------------------------------------------------- /external/libevent/test/regress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress.c -------------------------------------------------------------------------------- /external/libevent/test/regress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress.h -------------------------------------------------------------------------------- /external/libevent/test/regress.rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress.rpc -------------------------------------------------------------------------------- /external/libevent/test/regress_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_buffer.c -------------------------------------------------------------------------------- /external/libevent/test/regress_bufferevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_bufferevent.c -------------------------------------------------------------------------------- /external/libevent/test/regress_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_dns.c -------------------------------------------------------------------------------- /external/libevent/test/regress_et.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_et.c -------------------------------------------------------------------------------- /external/libevent/test/regress_finalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_finalize.c -------------------------------------------------------------------------------- /external/libevent/test/regress_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_http.c -------------------------------------------------------------------------------- /external/libevent/test/regress_iocp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_iocp.c -------------------------------------------------------------------------------- /external/libevent/test/regress_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_listener.c -------------------------------------------------------------------------------- /external/libevent/test/regress_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_main.c -------------------------------------------------------------------------------- /external/libevent/test/regress_minheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_minheap.c -------------------------------------------------------------------------------- /external/libevent/test/regress_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_rpc.c -------------------------------------------------------------------------------- /external/libevent/test/regress_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_ssl.c -------------------------------------------------------------------------------- /external/libevent/test/regress_testutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_testutils.c -------------------------------------------------------------------------------- /external/libevent/test/regress_testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_testutils.h -------------------------------------------------------------------------------- /external/libevent/test/regress_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_thread.c -------------------------------------------------------------------------------- /external/libevent/test/regress_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_thread.h -------------------------------------------------------------------------------- /external/libevent/test/regress_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_util.c -------------------------------------------------------------------------------- /external/libevent/test/regress_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/regress_zlib.c -------------------------------------------------------------------------------- /external/libevent/test/rpcgen_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/rpcgen_wrapper.sh -------------------------------------------------------------------------------- /external/libevent/test/test-changelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-changelist.c -------------------------------------------------------------------------------- /external/libevent/test/test-closed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-closed.c -------------------------------------------------------------------------------- /external/libevent/test/test-dumpevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-dumpevents.c -------------------------------------------------------------------------------- /external/libevent/test/test-eof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-eof.c -------------------------------------------------------------------------------- /external/libevent/test/test-fdleak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-fdleak.c -------------------------------------------------------------------------------- /external/libevent/test/test-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-init.c -------------------------------------------------------------------------------- /external/libevent/test/test-ratelim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-ratelim.c -------------------------------------------------------------------------------- /external/libevent/test/test-ratelim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-ratelim.sh -------------------------------------------------------------------------------- /external/libevent/test/test-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-time.c -------------------------------------------------------------------------------- /external/libevent/test/test-weof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test-weof.c -------------------------------------------------------------------------------- /external/libevent/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/test.sh -------------------------------------------------------------------------------- /external/libevent/test/tinytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/tinytest.c -------------------------------------------------------------------------------- /external/libevent/test/tinytest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/tinytest.h -------------------------------------------------------------------------------- /external/libevent/test/tinytest_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/tinytest_demo.c -------------------------------------------------------------------------------- /external/libevent/test/tinytest_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/tinytest_local.h -------------------------------------------------------------------------------- /external/libevent/test/tinytest_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/test/tinytest_macros.h -------------------------------------------------------------------------------- /external/libevent/time-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/time-internal.h -------------------------------------------------------------------------------- /external/libevent/util-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/util-internal.h -------------------------------------------------------------------------------- /external/libevent/whatsnew-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/whatsnew-2.0.txt -------------------------------------------------------------------------------- /external/libevent/whatsnew-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/whatsnew-2.1.txt -------------------------------------------------------------------------------- /external/libevent/win32select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/libevent/win32select.c -------------------------------------------------------------------------------- /external/protobuf-2.5.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/.gitignore -------------------------------------------------------------------------------- /external/protobuf-2.5.0/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/CHANGES.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/COPYING.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/INSTALL.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/Makefile.am -------------------------------------------------------------------------------- /external/protobuf-2.5.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/README.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/autogen.sh -------------------------------------------------------------------------------- /external/protobuf-2.5.0/benchmarks/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/benchmarks/readme.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/configure.ac -------------------------------------------------------------------------------- /external/protobuf-2.5.0/editors/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/editors/README.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/editors/proto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/editors/proto.vim -------------------------------------------------------------------------------- /external/protobuf-2.5.0/editors/protobuf-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/editors/protobuf-mode.el -------------------------------------------------------------------------------- /external/protobuf-2.5.0/examples/AddPerson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/examples/AddPerson.java -------------------------------------------------------------------------------- /external/protobuf-2.5.0/examples/ListPeople.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/examples/ListPeople.java -------------------------------------------------------------------------------- /external/protobuf-2.5.0/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/examples/Makefile -------------------------------------------------------------------------------- /external/protobuf-2.5.0/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/examples/README.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/examples/add_person.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/examples/add_person.cc -------------------------------------------------------------------------------- /external/protobuf-2.5.0/examples/add_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/examples/add_person.py -------------------------------------------------------------------------------- /external/protobuf-2.5.0/examples/list_people.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/examples/list_people.cc -------------------------------------------------------------------------------- /external/protobuf-2.5.0/examples/list_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/examples/list_people.py -------------------------------------------------------------------------------- /external/protobuf-2.5.0/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/java/README.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/java/pom.xml -------------------------------------------------------------------------------- /external/protobuf-2.5.0/m4/acx_check_suncc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/m4/acx_check_suncc.m4 -------------------------------------------------------------------------------- /external/protobuf-2.5.0/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /external/protobuf-2.5.0/m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/m4/stl_hash.m4 -------------------------------------------------------------------------------- /external/protobuf-2.5.0/more_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/more_tests/Makefile -------------------------------------------------------------------------------- /external/protobuf-2.5.0/post_process_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/post_process_dist.sh -------------------------------------------------------------------------------- /external/protobuf-2.5.0/protobuf-lite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/protobuf-lite.pc.in -------------------------------------------------------------------------------- /external/protobuf-2.5.0/protobuf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/protobuf.pc.in -------------------------------------------------------------------------------- /external/protobuf-2.5.0/python/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/python/README.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/python/ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/python/ez_setup.py -------------------------------------------------------------------------------- /external/protobuf-2.5.0/python/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/protobuf-2.5.0/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/protobuf-2.5.0/python/mox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/python/mox.py -------------------------------------------------------------------------------- /external/protobuf-2.5.0/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/python/setup.py -------------------------------------------------------------------------------- /external/protobuf-2.5.0/python/stubout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/python/stubout.py -------------------------------------------------------------------------------- /external/protobuf-2.5.0/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/src/Makefile.am -------------------------------------------------------------------------------- /external/protobuf-2.5.0/src/google/protobuf/SEBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/src/google/protobuf/SEBS -------------------------------------------------------------------------------- /external/protobuf-2.5.0/src/solaris/libstdc++.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/src/solaris/libstdc++.la -------------------------------------------------------------------------------- /external/protobuf-2.5.0/vsprojects/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/vsprojects/config.h -------------------------------------------------------------------------------- /external/protobuf-2.5.0/vsprojects/protobuf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/vsprojects/protobuf.sln -------------------------------------------------------------------------------- /external/protobuf-2.5.0/vsprojects/protoc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/vsprojects/protoc.vcproj -------------------------------------------------------------------------------- /external/protobuf-2.5.0/vsprojects/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/vsprojects/readme.txt -------------------------------------------------------------------------------- /external/protobuf-2.5.0/vsprojects/tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-2.5.0/vsprojects/tests.vcproj -------------------------------------------------------------------------------- /external/protobuf-current-makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/external/protobuf-current-makefile -------------------------------------------------------------------------------- /platform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/.gitignore -------------------------------------------------------------------------------- /platform/Android.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/Android.cmake -------------------------------------------------------------------------------- /platform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/CMakeLists.txt -------------------------------------------------------------------------------- /platform/arch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/arch.pdf -------------------------------------------------------------------------------- /platform/bindings/java/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /platform/bindings/java/libs/javacpp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/bindings/java/libs/javacpp.jar -------------------------------------------------------------------------------- /platform/bindings/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/bindings/java/pom.xml -------------------------------------------------------------------------------- /platform/bindings/java/src/diamondnotifyjava.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/bindings/java/src/diamondnotifyjava.cc -------------------------------------------------------------------------------- /platform/bindings/python/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /platform/bindings/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/bindings/python/CMakeLists.txt -------------------------------------------------------------------------------- /platform/bindings/python/ReactiveManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/bindings/python/ReactiveManager.py -------------------------------------------------------------------------------- /platform/bindings/python/boost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/bindings/python/boost.cc -------------------------------------------------------------------------------- /platform/bindings/python/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/bindings/python/test/test.py -------------------------------------------------------------------------------- /platform/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/client/CMakeLists.txt -------------------------------------------------------------------------------- /platform/client/diamondclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/client/diamondclient.cc -------------------------------------------------------------------------------- /platform/client/diamondclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/client/diamondclient.h -------------------------------------------------------------------------------- /platform/cmake/Modules/FindLibEvent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/cmake/Modules/FindLibEvent.cmake -------------------------------------------------------------------------------- /platform/cmake/Modules/FindLibUV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/cmake/Modules/FindLibUV.cmake -------------------------------------------------------------------------------- /platform/common-proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/common-proto.proto -------------------------------------------------------------------------------- /platform/data_types/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/CMakeLists.txt -------------------------------------------------------------------------------- /platform/data_types/boolean.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/boolean.cc -------------------------------------------------------------------------------- /platform/data_types/booleanlist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/booleanlist.cc -------------------------------------------------------------------------------- /platform/data_types/counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/counter.cc -------------------------------------------------------------------------------- /platform/data_types/id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/id.cc -------------------------------------------------------------------------------- /platform/data_types/list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/list.cc -------------------------------------------------------------------------------- /platform/data_types/long.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/long.cc -------------------------------------------------------------------------------- /platform/data_types/object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/object.cc -------------------------------------------------------------------------------- /platform/data_types/set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/set.cc -------------------------------------------------------------------------------- /platform/data_types/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/string.cc -------------------------------------------------------------------------------- /platform/data_types/stringlist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/stringlist.cc -------------------------------------------------------------------------------- /platform/data_types/stringqueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/stringqueue.cc -------------------------------------------------------------------------------- /platform/data_types/stringset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/data_types/stringset.cc -------------------------------------------------------------------------------- /platform/diamond-proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/diamond-proto.proto -------------------------------------------------------------------------------- /platform/frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /platform/frontend/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/frontend/client.cc -------------------------------------------------------------------------------- /platform/frontend/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/frontend/client.h -------------------------------------------------------------------------------- /platform/frontend/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/frontend/server.cc -------------------------------------------------------------------------------- /platform/frontend/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/frontend/server.h -------------------------------------------------------------------------------- /platform/includes/data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/includes/data_types.h -------------------------------------------------------------------------------- /platform/includes/debug_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/includes/debug_print.h -------------------------------------------------------------------------------- /platform/includes/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/includes/error.h -------------------------------------------------------------------------------- /platform/includes/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/includes/profile.h -------------------------------------------------------------------------------- /platform/includes/reactive_transactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/includes/reactive_transactions.h -------------------------------------------------------------------------------- /platform/includes/transactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/includes/transactions.h -------------------------------------------------------------------------------- /platform/latency-format.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/latency-format.proto -------------------------------------------------------------------------------- /platform/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/CMakeLists.txt -------------------------------------------------------------------------------- /platform/lib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/assert.h -------------------------------------------------------------------------------- /platform/lib/configuration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/configuration.cc -------------------------------------------------------------------------------- /platform/lib/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/configuration.h -------------------------------------------------------------------------------- /platform/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/hash.h -------------------------------------------------------------------------------- /platform/lib/latency.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/latency.cc -------------------------------------------------------------------------------- /platform/lib/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/latency.h -------------------------------------------------------------------------------- /platform/lib/lookup3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/lookup3.cc -------------------------------------------------------------------------------- /platform/lib/memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/memory.cc -------------------------------------------------------------------------------- /platform/lib/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/memory.h -------------------------------------------------------------------------------- /platform/lib/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/message.cc -------------------------------------------------------------------------------- /platform/lib/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/message.h -------------------------------------------------------------------------------- /platform/lib/simtransport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/simtransport.cc -------------------------------------------------------------------------------- /platform/lib/simtransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/simtransport.h -------------------------------------------------------------------------------- /platform/lib/tcptransport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/tcptransport.cc -------------------------------------------------------------------------------- /platform/lib/tcptransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/tcptransport.h -------------------------------------------------------------------------------- /platform/lib/tests/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/tests/Rules.mk -------------------------------------------------------------------------------- /platform/lib/tests/configuration-test-1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/tests/configuration-test-1.conf -------------------------------------------------------------------------------- /platform/lib/tests/configuration-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/tests/configuration-test.cc -------------------------------------------------------------------------------- /platform/lib/tests/simtransport-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/tests/simtransport-test.cc -------------------------------------------------------------------------------- /platform/lib/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/timestamp.h -------------------------------------------------------------------------------- /platform/lib/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/timeval.h -------------------------------------------------------------------------------- /platform/lib/transport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/transport.cc -------------------------------------------------------------------------------- /platform/lib/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/transport.h -------------------------------------------------------------------------------- /platform/lib/transportcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/transportcommon.h -------------------------------------------------------------------------------- /platform/lib/udptransport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/udptransport.cc -------------------------------------------------------------------------------- /platform/lib/udptransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/lib/udptransport.h -------------------------------------------------------------------------------- /platform/notification-proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/notification-proto.proto -------------------------------------------------------------------------------- /platform/replication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/CMakeLists.txt -------------------------------------------------------------------------------- /platform/replication/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/client.cc -------------------------------------------------------------------------------- /platform/replication/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/client.h -------------------------------------------------------------------------------- /platform/replication/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/CMakeLists.txt -------------------------------------------------------------------------------- /platform/replication/common/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/client.cc -------------------------------------------------------------------------------- /platform/replication/common/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/client.h -------------------------------------------------------------------------------- /platform/replication/common/configuration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/configuration.cc -------------------------------------------------------------------------------- /platform/replication/common/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/configuration.h -------------------------------------------------------------------------------- /platform/replication/common/log-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/log-impl.h -------------------------------------------------------------------------------- /platform/replication/common/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/log.cc -------------------------------------------------------------------------------- /platform/replication/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/log.h -------------------------------------------------------------------------------- /platform/replication/common/quorumset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/quorumset.h -------------------------------------------------------------------------------- /platform/replication/common/replica-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/replica-inl.h -------------------------------------------------------------------------------- /platform/replication/common/replica.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/replica.cc -------------------------------------------------------------------------------- /platform/replication/common/replica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/replica.h -------------------------------------------------------------------------------- /platform/replication/common/viewstamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/common/viewstamp.h -------------------------------------------------------------------------------- /platform/replication/replica.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/replica.cc -------------------------------------------------------------------------------- /platform/replication/replica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/replication/replica.h -------------------------------------------------------------------------------- /platform/request.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/request.proto -------------------------------------------------------------------------------- /platform/store-proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store-proto.proto -------------------------------------------------------------------------------- /platform/store/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/CMakeLists.txt -------------------------------------------------------------------------------- /platform/store/client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/client.cc -------------------------------------------------------------------------------- /platform/store/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/client.h -------------------------------------------------------------------------------- /platform/store/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/CMakeLists.txt -------------------------------------------------------------------------------- /platform/store/common/backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/CMakeLists.txt -------------------------------------------------------------------------------- /platform/store/common/backend/commstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/commstore.cc -------------------------------------------------------------------------------- /platform/store/common/backend/commstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/commstore.h -------------------------------------------------------------------------------- /platform/store/common/backend/kvstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/kvstore.cc -------------------------------------------------------------------------------- /platform/store/common/backend/kvstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/kvstore.h -------------------------------------------------------------------------------- /platform/store/common/backend/pubversionstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/pubversionstore.cc -------------------------------------------------------------------------------- /platform/store/common/backend/pubversionstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/pubversionstore.h -------------------------------------------------------------------------------- /platform/store/common/backend/txnstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/txnstore.h -------------------------------------------------------------------------------- /platform/store/common/backend/versionstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/versionstore.cc -------------------------------------------------------------------------------- /platform/store/common/backend/versionstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/backend/versionstore.h -------------------------------------------------------------------------------- /platform/store/common/frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /platform/store/common/frontend/asyncclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/frontend/asyncclient.h -------------------------------------------------------------------------------- /platform/store/common/frontend/cacheclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/frontend/cacheclient.cc -------------------------------------------------------------------------------- /platform/store/common/frontend/cacheclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/frontend/cacheclient.h -------------------------------------------------------------------------------- /platform/store/common/frontend/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/frontend/client.h -------------------------------------------------------------------------------- /platform/store/common/frontend/txnclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/frontend/txnclient.h -------------------------------------------------------------------------------- /platform/store/common/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/interval.h -------------------------------------------------------------------------------- /platform/store/common/notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/notification.h -------------------------------------------------------------------------------- /platform/store/common/promise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/promise.cc -------------------------------------------------------------------------------- /platform/store/common/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/promise.h -------------------------------------------------------------------------------- /platform/store/common/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/timestamp.h -------------------------------------------------------------------------------- /platform/store/common/tracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/tracer.cc -------------------------------------------------------------------------------- /platform/store/common/tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/tracer.h -------------------------------------------------------------------------------- /platform/store/common/transaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/transaction.cc -------------------------------------------------------------------------------- /platform/store/common/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/transaction.h -------------------------------------------------------------------------------- /platform/store/common/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/version.cc -------------------------------------------------------------------------------- /platform/store/common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/common/version.h -------------------------------------------------------------------------------- /platform/store/occstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/occstore.cc -------------------------------------------------------------------------------- /platform/store/occstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/occstore.h -------------------------------------------------------------------------------- /platform/store/pubstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/pubstore.cc -------------------------------------------------------------------------------- /platform/store/pubstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/pubstore.h -------------------------------------------------------------------------------- /platform/store/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/server.cc -------------------------------------------------------------------------------- /platform/store/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/server.h -------------------------------------------------------------------------------- /platform/store/shardclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/shardclient.cc -------------------------------------------------------------------------------- /platform/store/shardclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/store/shardclient.h -------------------------------------------------------------------------------- /platform/terminalclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/terminalclient/CMakeLists.txt -------------------------------------------------------------------------------- /platform/terminalclient/terminalClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/terminalclient/terminalClient.cc -------------------------------------------------------------------------------- /platform/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/CMakeLists.txt -------------------------------------------------------------------------------- /platform/test/backend-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/backend-test.cc -------------------------------------------------------------------------------- /platform/test/gce.tss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gce.tss.config -------------------------------------------------------------------------------- /platform/test/gce0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gce0.config -------------------------------------------------------------------------------- /platform/test/gce1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gce1.config -------------------------------------------------------------------------------- /platform/test/gce2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gce2.config -------------------------------------------------------------------------------- /platform/test/gce3.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gce3.config -------------------------------------------------------------------------------- /platform/test/gce4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gce4.config -------------------------------------------------------------------------------- /platform/test/gcelocalfiveshards.tss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gcelocalfiveshards.tss.config -------------------------------------------------------------------------------- /platform/test/gcelocalfiveshards0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gcelocalfiveshards0.config -------------------------------------------------------------------------------- /platform/test/gcelocalfiveshards1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gcelocalfiveshards1.config -------------------------------------------------------------------------------- /platform/test/gcelocalfiveshards2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gcelocalfiveshards2.config -------------------------------------------------------------------------------- /platform/test/gcelocalfiveshards3.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gcelocalfiveshards3.config -------------------------------------------------------------------------------- /platform/test/gcelocalfiveshards4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gcelocalfiveshards4.config -------------------------------------------------------------------------------- /platform/test/gcelocaloneshard.tss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gcelocaloneshard.tss.config -------------------------------------------------------------------------------- /platform/test/gcelocaloneshard0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/gcelocaloneshard0.config -------------------------------------------------------------------------------- /platform/test/generate-frontend-configs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/generate-frontend-configs.pl -------------------------------------------------------------------------------- /platform/test/local.frontend0.config: -------------------------------------------------------------------------------- 1 | host 127.0.0.1:12354 -------------------------------------------------------------------------------- /platform/test/local.tss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/local.tss.config -------------------------------------------------------------------------------- /platform/test/local0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/local0.config -------------------------------------------------------------------------------- /platform/test/niel.frontend0.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 128.208.6.132:12444 3 | -------------------------------------------------------------------------------- /platform/test/niel.tss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/niel.tss.config -------------------------------------------------------------------------------- /platform/test/niel0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/niel0.config -------------------------------------------------------------------------------- /platform/test/nielcharlottetown.frontend0.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 128.208.6.240:12444 3 | -------------------------------------------------------------------------------- /platform/test/nielcharlottetown.tss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/nielcharlottetown.tss.config -------------------------------------------------------------------------------- /platform/test/nielcharlottetown0.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/nielcharlottetown0.config -------------------------------------------------------------------------------- /platform/test/nielcharlottetown1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/nielcharlottetown1.config -------------------------------------------------------------------------------- /platform/test/nielcharlottetown2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/nielcharlottetown2.config -------------------------------------------------------------------------------- /platform/test/start_servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/start_servers.sh -------------------------------------------------------------------------------- /platform/test/testallocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/testallocation.cc -------------------------------------------------------------------------------- /platform/test/testlist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/testlist.cc -------------------------------------------------------------------------------- /platform/test/testlongallocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/test/testlongallocation.cc -------------------------------------------------------------------------------- /platform/timeserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/timeserver/CMakeLists.txt -------------------------------------------------------------------------------- /platform/timeserver/timeserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/timeserver/timeserver.cc -------------------------------------------------------------------------------- /platform/timeserver/timeserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/timeserver/timeserver.h -------------------------------------------------------------------------------- /platform/toolchains/android/symlinks/arm-linux-androideabi-g++: -------------------------------------------------------------------------------- 1 | ../toolchain/bin/arm-linux-androideabi-g++ -------------------------------------------------------------------------------- /platform/toolchains/android/symlinks/arm-linux-androideabi-gcc: -------------------------------------------------------------------------------- 1 | ../toolchain/bin/arm-linux-androideabi-gcc -------------------------------------------------------------------------------- /platform/transactions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/transactions/CMakeLists.txt -------------------------------------------------------------------------------- /platform/transactions/transactions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/transactions/transactions.cc -------------------------------------------------------------------------------- /platform/vr-proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/platform/vr-proto.proto -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build-scripts/old/build-apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/build-scripts/old/build-apps.sh -------------------------------------------------------------------------------- /scripts/build-scripts/old/build-diamond-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/build-scripts/old/build-diamond-core.sh -------------------------------------------------------------------------------- /scripts/build-scripts/old/build-diamond-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/build-scripts/old/build-diamond-java.sh -------------------------------------------------------------------------------- /scripts/build-scripts/old/build-everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/build-scripts/old/build-everything.sh -------------------------------------------------------------------------------- /scripts/experiments-eurosys-15/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-eurosys-15/.gitignore -------------------------------------------------------------------------------- /scripts/experiments-eurosys-15/android-chat-latency/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.txt 3 | -------------------------------------------------------------------------------- /scripts/experiments-eurosys-15/archive-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-eurosys-15/archive-data.sh -------------------------------------------------------------------------------- /scripts/experiments-eurosys-15/copy-graphs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-eurosys-15/copy-graphs.pl -------------------------------------------------------------------------------- /scripts/experiments-eurosys-15/desktopchat-latency/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.error 3 | -------------------------------------------------------------------------------- /scripts/experiments-eurosys-15/desktopchat-throughput/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.error 3 | -------------------------------------------------------------------------------- /scripts/experiments-eurosys-15/twitter-latency/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.error 3 | -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/key_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/key_generator.py -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/parse-caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/parse-caching.py -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/parse-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/parse-game.py -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/parse-retwis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/parse-retwis.py -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/parse-scalability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/parse-scalability.py -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/plot-baseline.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/plot-baseline.pl -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/plot-caching.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/plot-caching.pl -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/plot-docc-old.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/plot-docc-old.pl -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/plot-docc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/plot-docc.pl -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/plot-failure.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/plot-failure.pl -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/plot-scalability.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/plot-scalability.pl -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/run-benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/run-benchmark.py -------------------------------------------------------------------------------- /scripts/experiments-osdi-16/run-failure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments-osdi-16/run-failure.py -------------------------------------------------------------------------------- /scripts/experiments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/README.md -------------------------------------------------------------------------------- /scripts/experiments/baseline-experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/baseline-experiment.py -------------------------------------------------------------------------------- /scripts/experiments/caching-experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/caching-experiment.py -------------------------------------------------------------------------------- /scripts/experiments/client_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/client_common.py -------------------------------------------------------------------------------- /scripts/experiments/docc-experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/docc-experiment.py -------------------------------------------------------------------------------- /scripts/experiments/experiment_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/experiment_common.py -------------------------------------------------------------------------------- /scripts/experiments/parse-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/parse-game.py -------------------------------------------------------------------------------- /scripts/experiments/parse-retwis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/parse-retwis.py -------------------------------------------------------------------------------- /scripts/experiments/parse-scalability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/parse-scalability.py -------------------------------------------------------------------------------- /scripts/experiments/run_baseline_retwis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/run_baseline_retwis.py -------------------------------------------------------------------------------- /scripts/experiments/run_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/run_game.py -------------------------------------------------------------------------------- /scripts/experiments/run_redis_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/run_redis_game.py -------------------------------------------------------------------------------- /scripts/experiments/run_retwis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/experiments/run_retwis.py -------------------------------------------------------------------------------- /scripts/gce-cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce-cleanup.py -------------------------------------------------------------------------------- /scripts/gce-setup-dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce-setup-dependencies.py -------------------------------------------------------------------------------- /scripts/gce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/README.md -------------------------------------------------------------------------------- /scripts/gce/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/.gitignore -------------------------------------------------------------------------------- /scripts/gce/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/Dockerfile -------------------------------------------------------------------------------- /scripts/gce/docker/baseline-experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/baseline-experiment.pl -------------------------------------------------------------------------------- /scripts/gce/docker/build-everything.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/build-everything.pl -------------------------------------------------------------------------------- /scripts/gce/docker/build-kubernetes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/build-kubernetes.pl -------------------------------------------------------------------------------- /scripts/gce/docker/caching-experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/caching-experiment.pl -------------------------------------------------------------------------------- /scripts/gce/docker/cleanup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/cleanup.pl -------------------------------------------------------------------------------- /scripts/gce/docker/clusters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/clusters.txt -------------------------------------------------------------------------------- /scripts/gce/docker/docc-experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/docc-experiment.pl -------------------------------------------------------------------------------- /scripts/gce/docker/experiment_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/experiment_common.py -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend0.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.17:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend1.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.13:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend10.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.15:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend11.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.11:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend12.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.10:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend13.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.14:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend15.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.16:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend2.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.15:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend3.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.11:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend4.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.10:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend5.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.14:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend7.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.16:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend8.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.17:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocalfiveshards.frontend9.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.13:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend0.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.17:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend1.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.13:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend10.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.15:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend11.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.11:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend12.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.10:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend13.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.14:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend15.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.16:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend2.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.15:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend3.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.11:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend4.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.10:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend5.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.14:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend7.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.16:12345 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend8.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.17:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/gcelocaloneshard.frontend9.config: -------------------------------------------------------------------------------- 1 | f 1 2 | replica 10.128.0.13:12346 3 | -------------------------------------------------------------------------------- /scripts/gce/docker/kubectl-delete-job.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/kubectl-delete-job.pl -------------------------------------------------------------------------------- /scripts/gce/docker/kubectl-get-pods.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/kubectl-get-pods.pl -------------------------------------------------------------------------------- /scripts/gce/docker/kubectl-logs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/kubectl-logs.pl -------------------------------------------------------------------------------- /scripts/gce/docker/kubernetes-login.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/kubernetes-login.pl -------------------------------------------------------------------------------- /scripts/gce/docker/retwis-baseline-experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/retwis-baseline-experiment.pl -------------------------------------------------------------------------------- /scripts/gce/docker/retwis-docc-experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/retwis-docc-experiment.pl -------------------------------------------------------------------------------- /scripts/gce/docker/run-experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run-experiment.pl -------------------------------------------------------------------------------- /scripts/gce/docker/run-kubernetes-job.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run-kubernetes-job.pl -------------------------------------------------------------------------------- /scripts/gce/docker/run_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_baseline.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_baseline_retwis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_baseline_retwis.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_benchclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_benchclient.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_caching.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_docc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_docc.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_game.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_redis_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_redis_game.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_retwis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_retwis.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_scalability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_scalability.py -------------------------------------------------------------------------------- /scripts/gce/docker/run_terminalclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/run_terminalclient.py -------------------------------------------------------------------------------- /scripts/gce/docker/sanity-checks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/sanity-checks.pl -------------------------------------------------------------------------------- /scripts/gce/docker/scalability-experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/gce/docker/scalability-experiment.pl -------------------------------------------------------------------------------- /scripts/manage-servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UWSysLab/diamond/HEAD/scripts/manage-servers.py --------------------------------------------------------------------------------