Searched defs:field_value (Results 1 - 3 of 3) sorted by relevance

/external/bluetooth/bluez/audio/
H A Dgstsbcutil.c453 * Sets the int field_value to the param "field" on the structure.
458 const gchar *field, gint field_value,
462 g_value_set_int(value, field_value);
468 * Sets the string field_value to the param "field" on the structure.
473 const gchar *field, const gchar *field_value,
477 g_value_set_string(value, field_value);
457 gst_sbc_util_set_structure_int_param(GstStructure *structure, const gchar *field, gint field_value, GValue *value) argument
472 gst_sbc_util_set_structure_string_param(GstStructure *structure, const gchar *field, const gchar *field_value, GValue *value) argument
/external/chromium/chrome/browser/autofill/
H A Dautofill_ie_toolbar_import_win.cc141 string16 field_value = ReadAndDecryptValue(key, value_name.c_str()); local
142 if (!field_value.empty()) {
145 field_value = DecryptCCNumber(field_value);
147 profile->SetInfo(it->second, field_value);
/external/flac/libFLAC/
H A Dmetadata_object.c1311 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair(FLAC__StreamMetadata_VorbisComment_Entry *entry, const char *field_name, const char *field_value) argument
1315 FLAC__ASSERT(0 != field_value);
1319 if(!FLAC__format_vorbiscomment_entry_value_is_legal((const FLAC__byte *)field_value, (unsigned)(-1)))
1324 const size_t nv = strlen(field_value);
1330 memcpy(entry->entry+nn+1, field_value, nv);
1337 FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair(const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value) argument
1341 FLAC__ASSERT(0 != field_value);
1355 if(0 == (*field_value = (char*)safe_malloc_add_2op_(nv, /*+*/1))) {
1360 memcpy(*field_value, entry.entry+nn+1, nv);
1362 (*field_value)[n
[all...]

Completed in 164 milliseconds