/system/vold/ |
PrivateVolume.cpp | 23 #include "ResponseCode.h" 57 notifyEvent(ResponseCode::VolumeFsTypeChanged, mFsType); 58 notifyEvent(ResponseCode::VolumeFsUuidChanged, mFsUuid); 59 notifyEvent(ResponseCode::VolumeFsLabelChanged, mFsLabel);
|
PublicVolume.cpp | 21 #include "ResponseCode.h" 55 notifyEvent(ResponseCode::VolumeFsTypeChanged, mFsType); 56 notifyEvent(ResponseCode::VolumeFsUuidChanged, mFsUuid); 57 notifyEvent(ResponseCode::VolumeFsLabelChanged, mFsLabel);
|
Benchmark.cpp | 20 #include "ResponseCode.h" 48 ResponseCode::BenchmarkResult, res.c_str(), false);
|
Disk.cpp | 23 #include "ResponseCode.h" 120 notifyEvent(ResponseCode::DiskCreated, StringPrintf("%d", mFlags)); 130 notifyEvent(ResponseCode::DiskDestroyed); 239 notifyEvent(ResponseCode::DiskSizeChanged, StringPrintf("%" PRId64, mSize)); 240 notifyEvent(ResponseCode::DiskLabelChanged, mLabel); 241 notifyEvent(ResponseCode::DiskSysPathChanged, mSysPath); 264 notifyEvent(ResponseCode::DiskScanned); 330 notifyEvent(ResponseCode::DiskScanned);
|
TrimTask.cpp | 21 #include "ResponseCode.h" 111 ResponseCode::TrimResult, res.c_str(), false);
|
Android.mk | 16 ResponseCode.cpp \
|
MoveTask.cpp | 20 #include "ResponseCode.h" 59 VolumeManager::Instance()->getBroadcaster()->sendBroadcast(ResponseCode::MoveStatus,
|
ResponseCode.h | 20 class ResponseCode {
|
/system/security/keystore/ |
keystore.cpp | 603 ResponseCode writeBlob(const char* filename, AES_KEY *aes_key, State state, Entropy* entropy) { 666 ResponseCode readBlob(const char* filename, AES_KEY *aes_key, State state) { 799 ResponseCode initialize(const android::String8& pw, Entropy* entropy) { 803 ResponseCode response = writeMasterKey(pw, entropy); 811 ResponseCode copyMasterKey(UserState* src) { 823 ResponseCode writeMasterKey(const android::String8& pw, Entropy* entropy) { 832 ResponseCode readMasterKey(const android::String8& pw, Entropy* entropy) { 857 ResponseCode response = masterKeyBlob.readBlob(mMasterKeyFile, &passwordAesKey, 1027 ResponseCode initialize() { 1040 ResponseCode initializeUser(const android::String8& pw, uid_t userId) [all...] |
/external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/ |
CustomDispatcherTest.java | 86 private Thread buildRequestThread(final String path, final AtomicInteger responseCode) { 93 responseCode.set(conn.getResponseCode()); // Force the connection to hit the "server".
|
/packages/services/Telephony/src/com/android/phone/common/mail/store/ |
ImapStore.java | 130 String responseCode) { 134 mResponseCode = responseCode;
|
ImapConnection.java | 234 final String responseCode = response.getResponseCodeOrEmpty().getString(); 238 if (ImapConstants.UNAVAILABLE.equals(responseCode)) { 242 throw new ImapException(toString, status, alert, responseCode);
|
/external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/ |
Crawler.java | 96 int responseCode = response.code(); 98 System.out.printf("%03d: %s %s%n", responseCode, url, responseSource); 101 if (responseCode != 200 || contentType == null) {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/ |
HttpsURLConnectionTest.java | [all...] |
/frameworks/base/docs/html/google/play/billing/v2/ |
billing_subscriptions.jd | 190 int responseCode = response.getInt(Consts.<code>BILLING_RESPONSE_RESPONSE_CODE</code>); 193 ResponseCode.valueOf(responseCode)); 195 boolean billingSupported = (responseCode == ResponseCode.RESULT_OK.ordinal()); 271 protected void responseCodeReceived(ResponseCode responseCode) { 272 ResponseHandler.responseCodeReceived(BillingService.this, this, responseCode);
|
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/ |
MapStepsConvo.java | 230 int responseCode = op.getResponseCode(); 231 Assert.assertEquals(ResponseCodes.OBEX_HTTP_OK, responseCode);
|
MapStepsFolder.java | 131 int responseCode = op.getResponseCode(); 132 Assert.assertEquals(ResponseCodes.OBEX_HTTP_OK, responseCode);
|
ObexTestServer.java | 73 reply.responseCode = result;
|
/external/clang/test/CodeGenObjC/ |
debug-info-block-line.m | 51 - (void)sendResponseCode:(TResponseCode)responseCode dataFollows:(BOOL)flag
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/ |
BluetoothPbapRequest.java | 125 protected void checkResponseCode(int responseCode) throws IOException {
|
/packages/apps/Messaging/src/android/support/v7/mms/ |
MmsHttpClient.java | 185 final int responseCode = connection.getResponseCode(); 187 Log.d(MmsService.TAG, "HTTP: " + responseCode + " " + responseMessage); 191 if (responseCode / 100 != 2) { 192 throw new MmsHttpException(responseCode, responseMessage);
|
/packages/services/Mms/src/com/android/mms/service/ |
MmsHttpClient.java | 172 final int responseCode = connection.getResponseCode(); 174 LogUtil.d(requestId, "HTTP: " + responseCode + " " + responseMessage); 178 if (responseCode / 100 != 2) { 179 throw new MmsHttpException(responseCode, responseMessage);
|
/system/netd/server/ |
ResponseCode.h | 20 class ResponseCode {
|
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
RSSPullService.java | 167 int responseCode = localHttpURLConnection.getResponseCode(); 169 switch (responseCode) {
|
/frameworks/volley/src/main/java/com/android/volley/toolbox/ |
HurlStack.java | 109 int responseCode = connection.getResponseCode(); 110 if (responseCode == -1) {
|