/frameworks/av/include/drm/ |
DrmRights.h | 44 const String8& rightsFilePath, const String8& mimeType, 45 const String8& accountId = String8("_NO_USER"), 46 const String8& subscriptionId = String8("")); 57 const DrmBuffer& rightsData, const String8& mimeType, 58 const String8& accountId = String8("_NO_USER"), 59 const String8& subscriptionId = String8("")) [all...] |
DrmConstraints.h | 27 * As a result of DrmManagerClient::getConstraints(const String8*, const int) 40 static const String8 MAX_REPEAT_COUNT; 44 static const String8 REMAINING_REPEAT_COUNT; 49 static const String8 LICENSE_START_TIME; 54 static const String8 LICENSE_EXPIRY_TIME; 59 static const String8 LICENSE_AVAILABLE_TIME; 64 static const String8 EXTENDED_METADATA; 83 const String8& next(); 106 String8 next(); 119 String8 key = keyIt.next() [all...] |
DrmInfoRequest.h | 44 static const String8 ACCOUNT_ID; 48 static const String8 SUBSCRIPTION_ID; 57 DrmInfoRequest(int infoType, const String8& mimeType); 82 const String8& next(); 106 String8& next(); 126 String8 getMimeType(void) const; 142 status_t put(const String8& key, const String8& value); 150 String8 get(const String8& key) const [all...] |
/frameworks/av/drm/libdrmframework/include/ |
ReadWriteUtils.h | 48 static String8 readBytes(const String8& filePath); 56 static int readBytes(const String8& filePath, char** buffer); 63 static void writeToFile(const String8& filePath, const String8& data); 70 static void appendToFile(const String8& filePath, const String8& data);
|
/frameworks/av/drm/libdrmframework/plugins/common/util/include/ |
MimeTypeUtil.h | 20 #include <utils/String8.h> 41 static String8 convertMimeType(String8& mimeType);
|
/frameworks/av/include/media/ |
AudioParameter.h | 22 #include <utils/String8.h> 30 AudioParameter(const String8& keyValuePairs); 52 String8 toString(); 54 status_t add(const String8& key, const String8& value); 55 status_t addInt(const String8& key, const int value); 56 status_t addFloat(const String8& key, const float value); 58 status_t remove(const String8& key); 60 status_t get(const String8& key, String8& value) [all...] |
MediaResourcePolicy.h | 22 #include <utils/String8.h> 32 MediaResourcePolicy(String8 type, String8 value); 37 String8 toString() const; 39 String8 mType; 40 String8 mValue;
|
/frameworks/av/drm/mediadrm/plugins/clearkey/ |
JsonWebKey.h | 21 #include <utils/String8.h> 32 using android::String8; 40 bool extractKeysFromJsonWebKeySet(const String8& jsonWebKeySet, 45 Vector<String8> mJsonObjects; 46 Vector<String8> mTokens; 48 bool decodeBase64String(const String8& encodedText, 50 bool findKey(const String8& jsonObject, String8* keyId, 51 String8* encodedKey); 52 void findValue(const String8 &key, String8* value) [all...] |
/system/core/include/utils/ |
String8.h | 36 class String8 39 /* use String8(StaticLinkage) if you're statically linking against 40 * libutils and declaring an empty static String8, e.g.: 42 * static String8 sAStaticEmptyString(String8::kEmptyString); 43 * static String8 sAnotherStaticEmptyString(sAStaticEmptyString); 47 String8(); 48 explicit String8(StaticLinkage); 49 String8(const String8& o) [all...] |
PropertyMap.h | 21 #include <utils/String8.h> 60 void addProperty(const String8& key, const String8& value); 63 bool hasProperty(const String8& key) const; 69 bool tryGetProperty(const String8& key, String8& outValue) const; 70 bool tryGetProperty(const String8& key, bool& outValue) const; 71 bool tryGetProperty(const String8& key, int32_t& outValue) const; 72 bool tryGetProperty(const String8& key, float& outValue) const; 78 inline const KeyedVector<String8, String8>& getProperties() const { return mProperties; [all...] |
/frameworks/native/include/gui/ |
GuiConfig.h | 20 #include <utils/String8.h> 25 void appendGuiConfigString(String8& configStr);
|
/frameworks/native/include/ui/ |
UiConfig.h | 20 #include <utils/String8.h> 25 void appendUiConfigString(String8& configStr);
|
/cts/suite/audio_quality/lib/src/ |
Adb.h | 20 #include <utils/String8.h> 27 Adb(const android::String8& device); 31 bool launchClient(const android::String8& clientBinary, const android::String8& component); 33 int executeCommand(const android::String8& command); 36 android::String8 mDevice;
|
SimpleScriptExec.h | 23 #include <utils/String8.h> 40 static bool runScript(const android::String8& script, const android::String8& param, 41 android::String8& result); 52 static bool checkIfPassed(const android::String8& str, const android::String8& reMatch,
|
/frameworks/base/tools/aapt/ |
FileFinder.h | 15 #include <utils/String8.h> 25 virtual bool findFiles(String8 basePath, Vector<String8>& extensions, 26 KeyedVector<String8,time_t>& fileStore, 56 virtual bool findFiles(String8 basePath, Vector<String8>& extensions, 57 KeyedVector<String8,time_t>& fileStore, 75 static void checkAndAddFile(String8 path, const struct stat* stats, 76 Vector<String8>& extensions, 77 KeyedVector<String8,time_t>& fileStore) [all...] |
CrunchCache.h | 13 #include <utils/String8.h> 32 CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff); 84 bool needsUpdating(String8 relativePath) const; 88 String8 mSourcePath; 89 String8 mDestPath; 91 Vector<String8> mExtensions; 95 DefaultKeyedVector<String8,time_t> mSourceFiles; 96 DefaultKeyedVector<String8,time_t> mDestFiles;
|
/cts/suite/audio_quality/lib/include/ |
StringUtil.h | 21 #include <utils/String8.h> 25 * Utility class for implementing missing features from android::String8 32 static std::vector<android::String8>* split(const android::String8& str, char delimiter); 34 static android::String8 substr(const android::String8& str, size_t pos, size_t n); 35 static int compare(const android::String8& str, const char* other); 36 static bool endsWith(const android::String8& str, const char* other);
|
ClientInterface.h | 20 #include <utils/String8.h> 33 virtual bool init(const android::String8& param) = 0;
|
/frameworks/base/tools/aapt/tests/ |
MockCacheUpdater.h | 7 #include <utils/String8.h> 19 virtual void ensureDirectoriesExist(String8 path) 25 virtual void deleteFile(String8 path) { 30 virtual void processImage(String8 source, String8 dest) {
|
AaptGroupEntry_test.cpp | 17 #include <utils/String8.h> 24 using android::String8; 26 static ::testing::AssertionResult TestParse(AaptGroupEntry& entry, const String8& dirName, 27 String8* outType) { 35 String8* outType) { 36 return TestParse(entry, String8(input), outType); 41 String8 type; 43 EXPECT_EQ(String8("menu"), type); 48 String8 type; 50 EXPECT_EQ(String8("anim"), type) [all...] |
MockFileFinder.h | 10 #include <utils/String8.h> 18 MockFileFinder (KeyedVector<String8, KeyedVector<String8,time_t> >& files) 35 virtual bool findFiles(String8 basePath, Vector<String8>& extensions, 36 KeyedVector<String8,time_t>& fileStore, 39 const KeyedVector<String8,time_t>* payload(&mFiles.valueFor(basePath)); 51 KeyedVector<String8, KeyedVector<String8,time_t> > mFiles;
|
FileFinder_test.cpp | 8 #include <utils/String8.h> 27 String8 path("ApiDemos"); 30 KeyedVector<String8,time_t> testStorage; 33 Vector< pair<String8,time_t> > data; 34 data.push( pair<String8,time_t>(String8("hello.png"),3) ); 35 data.push( pair<String8,time_t>(String8("world.PNG"),3) ); 36 data.push( pair<String8,time_t>(String8("foo.pNg"),3) ) [all...] |
/frameworks/av/drm/common/ |
DrmRights.cpp | 22 DrmRights::DrmRights(const String8& rightsFilePath, const String8& mimeType, 23 const String8& accountId, const String8& subscriptionId) : 29 if (String8("") != rightsFilePath) { 35 DrmRights::DrmRights(const DrmBuffer& rightsData, const String8& mimeType, 36 const String8& accountId, const String8& subscriptionId) : 52 String8 DrmRights::getMimeType(void) const { 56 String8 DrmRights::getAccountId(void) const [all...] |
/frameworks/av/services/mediaresourcemanager/ |
ServiceLog.h | 22 #include <utils/String8.h> 35 void add(const String8 &log); 36 String8 toString(const char *linePrefix = NULL) const; 41 RingBuffer<String8> mLogs; 43 void addLine(const char *log, const char *prefix, String8 *result) const;
|
/system/core/healthd/include/healthd/ |
healthd.h | 23 #include <utils/String8.h> 58 android::String8 batteryStatusPath; 59 android::String8 batteryHealthPath; 60 android::String8 batteryPresentPath; 61 android::String8 batteryCapacityPath; 62 android::String8 batteryVoltagePath; 63 android::String8 batteryTemperaturePath; 64 android::String8 batteryTechnologyPath; 65 android::String8 batteryCurrentNowPath; 66 android::String8 batteryCurrentAvgPath [all...] |