HomeSort by relevance Sort by last modified time
    Searched full:data (Results 201 - 225 of 53578) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/net/base/
data_url.h 17 // See RFC 2397 for a complete description of the 'data' URL scheme.
19 // Briefly, a 'data' URL has the form:
21 // data:[<mediatype>][;base64],<data>
24 // parameters.) The appearance of ";base64" means that the data is encoded as
25 // base64. Without ";base64", the data (as a sequence of octets) is represented
33 // This method can be used to parse a 'data' URL into its component pieces.
35 // The resulting mime_type is normalized to lowercase. The data is the
36 // decoded data (e.g.., if the data URL specifies base64 encoding, then th
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleDataBox.java 8 * Most stupid box of the world. Encapsulates actual data within
11 public static final String TYPE = "data";
14 private byte[] data; field in class:AppleDataBox
56 return data.length + 8;
59 public void setData(byte[] data) {
60 this.data = new byte[data.length];
61 System.arraycopy(data, 0, this.data, 0, data.length)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPSource.cpp 184 uint8_t *data = buffer->data() + buffer->size(); local
186 data[0] = 0x80 | 4;
187 data[1] = 206; // PSFB
188 data[2] = 0;
189 data[3] = 4;
190 data[4] = kSourceID >> 24;
191 data[5] = (kSourceID >> 16) & 0xff;
192 data[6] = (kSourceID >> 8) & 0xff;
193 data[7] = kSourceID & 0xff
222 uint8_t *data = buffer->data() + buffer->size(); local
    [all...]
  /hardware/samsung_slsi/exynos5/libkeymaster/
tlcTeeKeymaster_if.h 25 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
137 * Generates RSA key pair and returns key pair data as wrapped object
140 * @param keyData [in] Pointer to the key data buffer
141 * @param keyDataLength [in] Key data buffer length
144 * @param soLen [out] Key data secure object length
158 * Signs given plain data and returns signature data
160 * @param keyData [in] Pointer to key data buffer
161 * @param keyDataLength [in] Key data buffer length
162 * @param plainData [in] Pointer to plain data to be signe
    [all...]
  /external/chromium/net/disk_cache/
storage_block_unittest.cc 19 memset(entry1.Data(), 0, sizeof(disk_cache::EntryStore));
20 entry1.Data()->hash = 0xaa5555aa;
21 entry1.Data()->rankings_node = 0xa0010002;
24 entry1.Data()->hash = 0x88118811;
25 entry1.Data()->rankings_node = 0xa0040009;
28 EXPECT_EQ(0xaa5555aa, entry1.Data()->hash);
29 EXPECT_EQ(0xa0010002, entry1.Data()->rankings_node);
39 entry1.Data()->hash = 0xaa5555aa;
43 EXPECT_TRUE(entry2.Data() != NULL);
44 EXPECT_TRUE(0 == entry2.Data()->hash)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariableValue.java 20 import com.google.clearsilver.jsilver.data.Data;
21 import com.google.clearsilver.jsilver.data.DataContext;
22 import com.google.clearsilver.jsilver.data.TypeConverter;
25 * A value linked to a variable reference. When this value is evaluated in an expression a Data
27 * if there is no Data object associated with the given name.
30 * @see Data
40 private Data reference;
44 // a Data object, not a compound expression containing escaping functions.
45 // We override getEscapeMode() to return the Data object's escape mode
66 Data data = getReference(); local
84 Data data = getReference(); local
    [all...]
  /external/oprofile/libdb/
db_insert.c 21 static inline int add_node(odb_data_t * data, odb_key_t key, odb_value_t value)
27 /* no locking is necessary: iteration interface retrieve data through
32 if (data->descr->current_size >= data->descr->size) {
33 if (odb_grow_hashtable(data))
36 new_node = data->descr->current_size;
38 node = &data->node_base[new_node];
42 index = odb_do_hash(data, key);
43 node->next = data->hash_base[index];
44 data->hash_base[index] = new_node
63 odb_data_t * data; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
seq_event.h 39 * Sequencer event data type
45 /** system status; event data type = #snd_seq_result_t */
47 /** returned result status; event data type = #snd_seq_result_t */
50 /** note on and off with duration; event data type = #snd_seq_ev_note_t */
52 /** note on; event data type = #snd_seq_ev_note_t */
54 /** note off; event data type = #snd_seq_ev_note_t */
56 /** key pressure change (aftertouch); event data type = #snd_seq_ev_note_t */
59 /** controller; event data type = #snd_seq_ev_ctrl_t */
61 /** program change; event data type = #snd_seq_ev_ctrl_t */
63 /** channel pressure; event data type = #snd_seq_ev_ctrl_t *
445 } data; \/**< event data... *\/ member in struct:snd_seq_event
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
seq_event.h 39 * Sequencer event data type
45 /** system status; event data type = #snd_seq_result_t */
47 /** returned result status; event data type = #snd_seq_result_t */
50 /** note on and off with duration; event data type = #snd_seq_ev_note_t */
52 /** note on; event data type = #snd_seq_ev_note_t */
54 /** note off; event data type = #snd_seq_ev_note_t */
56 /** key pressure change (aftertouch); event data type = #snd_seq_ev_note_t */
59 /** controller; event data type = #snd_seq_ev_ctrl_t */
61 /** program change; event data type = #snd_seq_ev_ctrl_t */
63 /** channel pressure; event data type = #snd_seq_ev_ctrl_t *
445 } data; \/**< event data... *\/ member in struct:snd_seq_event
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
seq_event.h 39 * Sequencer event data type
45 /** system status; event data type = #snd_seq_result_t */
47 /** returned result status; event data type = #snd_seq_result_t */
50 /** note on and off with duration; event data type = #snd_seq_ev_note_t */
52 /** note on; event data type = #snd_seq_ev_note_t */
54 /** note off; event data type = #snd_seq_ev_note_t */
56 /** key pressure change (aftertouch); event data type = #snd_seq_ev_note_t */
59 /** controller; event data type = #snd_seq_ev_ctrl_t */
61 /** program change; event data type = #snd_seq_ev_ctrl_t */
63 /** channel pressure; event data type = #snd_seq_ev_ctrl_t *
445 } data; \/**< event data... *\/ member in struct:snd_seq_event
    [all...]
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options.js 85 var data = $('inetAddress').data;
86 chrome.send('setApn', [String(data.servicePath),
92 var data = $('inetAddress').data;
93 chrome.send('setApn', [String(data.servicePath),
135 var data = $('inetAddress').data;
136 var servicePath = data.servicePath;
137 if (data.type == options.internet.Constants.TYPE_WIFI)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_pax.c 47 struct eap_pax_data *data; local
49 data = os_zalloc(sizeof(*data));
50 if (data == NULL)
52 data->state = PAX_STD_1;
57 data->mac_id = EAP_PAX_MAC_HMAC_SHA1_128;
59 return data;
65 struct eap_pax_data *data = priv; local
66 os_free(data->cid);
67 os_free(data);
167 struct eap_pax_data *data = priv; local
186 struct eap_pax_data *data = priv; local
454 struct eap_pax_data *data = priv; local
485 struct eap_pax_data *data = priv; local
492 struct eap_pax_data *data = priv; local
513 struct eap_pax_data *data = priv; local
535 struct eap_pax_data *data = priv; local
    [all...]
eap_server_vendor_test.c 41 static void eap_vendor_test_state(struct eap_vendor_test_data *data,
45 eap_vendor_test_state_txt(data->state),
47 data->state = state;
53 struct eap_vendor_test_data *data; local
55 data = os_zalloc(sizeof(*data));
56 if (data == NULL)
58 data->state = INIT;
60 return data;
66 struct eap_vendor_test_data *data = priv local
74 struct eap_vendor_test_data *data = priv; local
110 struct eap_vendor_test_data *data = priv; local
135 struct eap_vendor_test_data *data = priv; local
142 struct eap_vendor_test_data *data = priv; local
163 struct eap_vendor_test_data *data = priv; local
    [all...]
eap_server_identity.c 23 struct eap_identity_data *data; local
25 data = os_zalloc(sizeof(*data));
26 if (data == NULL)
28 data->state = CONTINUE;
30 return data;
36 struct eap_identity_data *data; local
37 data = eap_identity_init(sm);
38 if (data) {
39 data->pick_up = 1
47 struct eap_identity_data *data = priv; local
55 struct eap_identity_data *data = priv; local
102 struct eap_identity_data *data = priv; local
138 struct eap_identity_data *data = priv; local
145 struct eap_identity_data *data = priv; local
    [all...]
eap_server_md5.c 27 struct eap_md5_data *data; local
29 data = os_zalloc(sizeof(*data));
30 if (data == NULL)
32 data->state = CONTINUE;
34 return data;
40 struct eap_md5_data *data = priv; local
41 os_free(data);
47 struct eap_md5_data *data = priv; local
50 if (random_get_bytes(data->challenge, CHALLENGE_LEN))
101 struct eap_md5_data *data = priv; local
141 struct eap_md5_data *data = priv; local
148 struct eap_md5_data *data = priv; local
    [all...]
  /external/icu4c/common/unicode/
udata.h 27 * \brief C API: Data loading interface
29 * <h2>Information about data loading interface</h2>
31 * This API is used to find and efficiently load data for ICU and applications
32 * using ICU. It provides an abstract interface that specifies a data type and
33 * name to find and load the data. Normally this API is used by other ICU APIs
34 * to load required data out of the ICU data library, but it can be used to
35 * load data out of other places.
37 * See the User Guide Data Management chapter.
66 * Alias for standard ICU data
    [all...]
  /frameworks/base/tests/backup/
test_restore.sh 25 data=$(a shell cat /data/data/com.android.backuptest/$1)
26 if [ "$data" = "$2" ] ; then
31 echo " value: [$data]"
40 data=$(a shell "ls $@ 2> /dev/null >/dev/null && echo -n exists")
41 if [ "$data" = "exists" ]; then
48 # Make sure adb is root so we can poke at com.android.backuptest's data
51 # delete the old data
53 a shell "ls -l /data/data/com.android.backuptest/files
    [all...]
  /external/qemu/
qerror.h 52 "{ 'class': 'BadBusForDevice', 'data': { 'device': %s, 'bad_bus_type': %s } }"
55 "{ 'class': 'BusNotFound', 'data': { 'bus': %s } }"
58 "{ 'class': 'BusNoHotplug', 'data': { 'bus': %s } }"
61 "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }"
64 "{ 'class': 'DeviceEncrypted', 'data': { 'device': %s } }"
67 "{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }"
70 "{ 'class': 'DeviceInUse', 'data': { 'device': %s } }"
73 "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"
76 "{ 'class': 'DeviceMultipleBusses', 'data': { 'device': %s } }"
79 "{ 'class': 'DeviceNotActive', 'data': { 'device': %s } }
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
navigation1-expected-navigate4.txt 3 data/res/values-en-rGB/strings.xml
5 data/res/values/strings.xml
7 data/res/values-ar/strings.xml
9 data/res/values-bg/strings.xml
11 data/res/values-ca/strings.xml
13 data/res/values-cs/strings.xml
15 data/res/values-da/strings.xml
17 data/res/values-de/strings.xml
19 data/res/values-el/strings.xml
21 data/res/values-es/strings.xm
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_tnc.c 37 struct eap_tnc_data *data; local
39 data = os_zalloc(sizeof(*data));
40 if (data == NULL)
42 data->state = WAIT_START;
43 data->fragment_size = 1300;
44 data->tncc = tncc_init();
45 if (data->tncc == NULL) {
46 os_free(data);
50 return data;
56 struct eap_tnc_data *data = priv; local
200 struct eap_tnc_data *data = priv; local
    [all...]
eap_tls_common.c 32 const u8 **data, size_t *data_len)
47 *data = blob->data;
113 struct eap_ssl_data *data,
118 if (sm->workaround && data->eap_type != EAP_TYPE_FAST) {
139 * Use blob data, if available. Otherwise, leave reference to external
161 struct eap_ssl_data *data,
167 data->conn = tls_connection_init(data->ssl_ctx);
168 if (data->conn == NULL)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArrayInput.java 28 * Implementation of {@link Input} which reads the data from a
37 /** non-null; the data itself */
38 private byte[] data; field in class:ByteArrayInput
44 * Constructs an instance with the given data
46 * @param data non-null; data array to use for input
48 public ByteArrayInput(byte[] data) {
49 if (data == null) {
50 throw new NullPointerException("data == null");
53 this.data = data
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
vcdecoder1_test.cc 26 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
27 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_header_.data(),
35 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
36 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
50 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
51 EXPECT_FALSE(decoder_.DecodeChunk(delta_file_.data(),
60 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
61 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
70 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
71 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
    [all...]
  /external/open-vcdiff/src/
vcdecoder1_test.cc 26 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
27 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_header_.data(),
35 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
36 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
50 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
51 EXPECT_FALSE(decoder_.DecodeChunk(delta_file_.data(),
60 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
61 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
70 decoder_.StartDecoding(dictionary_.data(), dictionary_.size());
71 EXPECT_TRUE(decoder_.DecodeChunk(delta_file_.data(),
    [all...]
  /external/chromium/chrome/browser/resources/options/
certificate_tree.js 10 * Creates a new tree item for certificate data.
11 * @param {Object=} data Data used to create a certificate tree item.
15 function CertificateTreeItem(data) {
18 label: data.name,
19 data: data
23 if (data.icon) {
24 treeItem.icon = data.icon;
40 return parent.pathId + ',' + this.data.id
    [all...]

Completed in 583 milliseconds

1 2 3 4 5 6 7 891011>>