Searched refs:key (Results 176 - 200 of 438) sorted by relevance

1234567891011>>

/frameworks/av/include/media/
H A DICrypto.h46 const uint8_t key[16],
/frameworks/base/core/java/android/content/
H A DDefaultDataHandler.java165 String key = atts.getValue(0);
167 if (key != null && key.length() > 0 && value != null && value.length() > 0) {
171 mValues.put(key, value);
/frameworks/base/core/java/android/preference/
H A DPreferenceGroup.java218 * Finds a {@link Preference} based on its key. If two {@link Preference}
219 * share the same key (not recommended), the first to appear will be
220 * returned (to retrieve the other preference with the same key, call this
221 * method on the first preference). If this preference has the key, it will
227 * @param key The key of the preference to retrieve.
228 * @return The {@link Preference} with the key, or null.
230 public Preference findPreference(CharSequence key) { argument
231 if (TextUtils.equals(getKey(), key)) {
239 if (curKey != null && curKey.equals(key)) {
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp61 String8 key; local
62 key.append(LOG_NAMESPACE);
63 key.append(tag);
66 if (property_get(key.string(), buf, "") <= 0) {
/frameworks/base/libs/hwui/
H A DProgramCache.h51 Program* generateProgram(const ProgramDescription& description, programid key);
/frameworks/compile/mclinker/lib/LD/
H A DBranchIsland.cpp100 Key key(pPrototype, pReloc.symInfo()->outSymbol(), pReloc.addend());
101 StubMapType::iterator it = m_StubMap.find(key);
115 Key key(pPrototype, pReloc.symInfo()->outSymbol(), pReloc.addend());
116 StubEntryType* entry = m_StubMap.insert(key, exist);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.h163 bool operator<(const GotEntryKey& key) const
165 if (m_GOTPage == key.m_GOTPage)
166 return m_pInfo < key.m_pInfo;
168 return m_GOTPage < key.m_GOTPage;
H A DMipsGOT.cpp337 GotEntryKey key;
338 key.m_GOTPage = m_CurrentGOTPart;
339 key.m_pInfo = pInfo;
340 m_GotEntriesMap[key] = pEntry;
345 GotEntryKey key;
346 key.m_GOTPage= m_CurrentGOTPart;
347 key.m_pInfo = pInfo;
348 GotEntryMapType::iterator it = m_GotEntriesMap.find(key);
/frameworks/native/include/media/hardware/
H A DCryptoAPI.h48 // Neither key nor iv are being used in this mode.
77 const uint8_t key[16],
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightPlayer.h59 virtual status_t setParameter(int key, const Parcel &request);
60 virtual status_t getParameter(int key, Parcel *reply);
/frameworks/base/core/java/android/app/backup/
H A DFileBackupHelperBase.java109 boolean isKeyInList(String key, String[] list) { argument
111 if (s.equals(key)) {
/frameworks/base/include/androidfw/
H A DBackupHelpers.h32 int keyLen; // length of the key name, not including the null terminator
72 status_t WriteEntityHeader(const String8& key, size_t dataSize);
113 status_t ReadEntityHeader(String8* key, size_t* dataSize);
/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_program.h76 jstring key,
82 jstring key);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DMediaSizeUtils.java52 MediaSize key = MediaSize.getStandardMediaSizeById(mediaSizeId);
54 sMediaSizeToStandardMap.put(key, value);
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/
H A DSymbolResolvers.h82 const SymbolMap key = { pName, NULL }; local
85 ::bsearch(&key, Subclass::SymbolArray,
/frameworks/native/libs/input/
H A DKeyLayoutMap.cpp57 ALOGE("Error %d opening key layout map file %s.", status, filename.string());
61 ALOGE("Error allocating key layout map.");
71 ALOGD("Parsed key layout map file '%s' %d lines in %0.3fms.",
86 const Key* key = getKey(scanCode, usageCode); local
87 if (!key) {
96 *outKeyCode = key->keyCode;
97 *outFlags = key->flags;
174 if (keywordToken == "key") {
214 ALOGE("%s: Expected key %s number, got '%s'.", mTokenizer->getLocation().string(),
221 ALOGE("%s: Duplicate entry for key
259 Key key; local
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp62 static void setBlob(const void* key, EGLsizeiANDROID keySize, argument
64 egl_cache_t::get()->setBlob(key, keySize, value, valueSize);
67 static EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize, argument
69 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
133 void egl_cache_t::setBlob(const void* key, EGLsizeiANDROID keySize, argument
144 bc->set(key, keySize, value, valueSize);
172 EGLsizeiANDROID egl_cache_t::getBlob(const void* key, EGLsizeiANDROID keySize, argument
183 return bc->get(key, keySize, value, valueSize);
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java169 final String table, final String key) {
183 Bundle b = provider.call(null, callGetCommand, key, arg);
188 System.err.println("Can't read key " + key + " in " + table + " for user " + userHandle);
194 final String table, final String key, final String value) {
208 provider.call(null, callPutCommand, key, arg);
210 System.err.println("Can't set key " + key + " in " + table + " for user " + userHandle);
215 System.err.println("usage: settings [--user NUM] get namespace key");
216 System.err.println(" settings [--user NUM] put namespace key valu
168 getForUser(IContentProvider provider, int userHandle, final String table, final String key) argument
193 putForUser(IContentProvider provider, int userHandle, final String table, final String key, final String value) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/
H A DCaptureRequest.java100 public <T> T get(Key<T> key) { argument
101 return mSettings.get(key);
124 * <p>A request is considered equal to another is if it's set of key/values is equal, it's
259 * @param key The metadata field to write.
261 * type to the key.
263 public <T> void set(Key<T> key, T value) { argument
264 mRequest.mSettings.set(key, value);
271 * @throws IllegalArgumentException if the key was not valid
273 * @param key The metadata field to read.
274 * @return The value of that key, o
276 get(Key<T> key) argument
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java48 * authenticating with a key. {@see #authenticateSectorWithKeyA} and
55 * <li>{@link #KEY_DEFAULT} is the default factory key for MIFARE Classic.
56 * <li>{@link #KEY_MIFARE_APPLICATION_DIRECTORY} is the well-known key for
59 * <li>{@link #KEY_NFC_FORUM} is the well-known key for MIFARE Classic cards that
77 * The default factory key.
82 * The well-known key for tags formatted according to the
88 * The well-known key for tags formatted according to the
316 * Authenticate a sector with key A.
318 * <p>Successful authentication of a sector with key A enables other
319 * I/O operations on that sector. The set of operations granted by key
338 authenticateSectorWithKeyA(int sectorIndex, byte[] key) argument
365 authenticateSectorWithKeyB(int sectorIndex, byte[] key) argument
369 authenticate(int sector, byte[] key, boolean keyA) argument
[all...]
/frameworks/base/core/java/com/android/internal/backup/
H A DLocalTransport.java105 // the record key. Wind through the data file, extracting individual
113 String key = changeSet.getKey();
114 String base64Key = new String(Base64.encode(key.getBytes()));
119 if (DEBUG) Log.v(TAG, "Got change set key=" + key + " size=" + dataSize
138 Log.e(TAG, "Unable to update key file " + entityFile.getAbsolutePath());
237 if (DEBUG) Log.v(TAG, " getRestoreData() found " + blobs.length + " key files");
246 String key = new String(Base64.decode(f.getName()));
247 if (DEBUG) Log.v(TAG, " ... key=" + key
[all...]
/frameworks/base/libs/androidfw/
H A DBackupData.cpp39 * - A sequence of zero or more key/value paires (entities), each with
41 * - The key, utf-8, null terminated, padded to 4-byte boundary.
93 BackupDataWriter::WriteEntityHeader(const String8& key, size_t dataSize) argument
110 k += key;
112 k = key;
115 ALOGD("Writing header: prefix='%s' key='%s' dataSize=%d", m_keyPrefix.string(),
116 key.string(), dataSize);
136 if (DEBUG) ALOGI("writing entity header key, %d bytes", keyLen+1);
303 BackupDataReader::ReadEntityHeader(String8* key, size_t* dataSize) argument
311 *key
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DUploadedTexture.java120 BorderKey key = sBorderKey;
121 key.vertical = vertical;
122 key.config = config;
123 key.length = length;
124 Bitmap bitmap = sBorderLines.get(key);
129 sBorderLines.put(key.clone(), bitmap);
/frameworks/base/services/java/com/android/server/content/
H A DSyncOperation.java68 public final String key; field in class:SyncOperation
111 this.key = toKey();
156 this.key = toKey();
253 for (String key : bundle.keySet()) {
254 sb.append(key).append("=").append(bundle.get(key)).append(" ");
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java114 for (String key : source.mFields.keySet()) {
115 mFields.put(key, source.mFields.get(key));
167 String key = in.readString();
169 enterpriseConfig.mFields.put(key, value);
473 * Specify a private key and client certificate for client authorization.
475 * <p>A default name is automatically assigned to the key entry and used
477 * key entry when the config is saved and removing the key entry when
482 * @throws IllegalArgumentException for an invalid key o
516 isHardwareBackedKey(PrivateKey key) argument
810 getFieldValue(String key, String prefix) argument
828 setFieldValue(String key, String value, String prefix) argument
[all...]

Completed in 676 milliseconds

1234567891011>>