HomeSort by relevance Sort by last modified time
    Searched full:data (Results 101 - 125 of 24066) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_pax.c 52 struct eap_pax_data *data; local
54 data = os_zalloc(sizeof(*data));
55 if (data == NULL)
57 data->state = PAX_STD_1;
62 data->mac_id = EAP_PAX_MAC_HMAC_SHA1_128;
64 return data;
70 struct eap_pax_data *data = priv; local
71 os_free(data->cid);
72 os_free(data);
172 struct eap_pax_data *data = priv; local
191 struct eap_pax_data *data = priv; local
459 struct eap_pax_data *data = priv; local
490 struct eap_pax_data *data = priv; local
497 struct eap_pax_data *data = priv; local
518 struct eap_pax_data *data = priv; local
540 struct eap_pax_data *data = priv; local
    [all...]
eap_vendor_test.c 47 static void eap_vendor_test_state(struct eap_vendor_test_data *data,
51 eap_vendor_test_state_txt(data->state),
53 data->state = state;
59 struct eap_vendor_test_data *data; local
61 data = os_zalloc(sizeof(*data));
62 if (data == NULL)
64 data->state = INIT;
66 return data;
72 struct eap_vendor_test_data *data = priv local
80 struct eap_vendor_test_data *data = priv; local
116 struct eap_vendor_test_data *data = priv; local
141 struct eap_vendor_test_data *data = priv; local
148 struct eap_vendor_test_data *data = priv; local
169 struct eap_vendor_test_data *data = priv; local
    [all...]
eap_identity.c 29 struct eap_identity_data *data; local
31 data = os_zalloc(sizeof(*data));
32 if (data == NULL)
34 data->state = CONTINUE;
36 return data;
42 struct eap_identity_data *data; local
43 data = eap_identity_init(sm);
44 if (data) {
45 data->pick_up = 1
53 struct eap_identity_data *data = priv; local
61 struct eap_identity_data *data = priv; local
108 struct eap_identity_data *data = priv; local
144 struct eap_identity_data *data = priv; local
151 struct eap_identity_data *data = priv; local
    [all...]
eap_md5.c 32 struct eap_md5_data *data; local
34 data = os_zalloc(sizeof(*data));
35 if (data == NULL)
37 data->state = CONTINUE;
39 return data;
45 struct eap_md5_data *data = priv; local
46 os_free(data);
52 struct eap_md5_data *data = priv; local
55 if (os_get_random(data->challenge, CHALLENGE_LEN))
106 struct eap_md5_data *data = priv; local
142 struct eap_md5_data *data = priv; local
149 struct eap_md5_data *data = priv; local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
UrlBase64.java 8 * Convert binary data to and from UrlBase64 encoding. This is identical to
13 * data that is safe for use as an URL parameter. Base64 encoding does not
24 * Encode the input data producing a URL safe base 64 encoded byte array.
26 * @return a byte array containing the URL safe base 64 encoded data.
29 byte[] data)
35 encoder.encode(data, 0, data.length, bOut);
46 * Encode the byte data writing it to the given output stream.
51 byte[] data,
55 return encoder.encode(data, 0, data.length, out)
    [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/bluetooth/glib/gio/tests/
g-icon.c 16 * goods or services; loss of use, data, or profits; or business
42 char *data; local
52 data = g_icon_to_string (icon);
53 g_assert_cmpstr (data, ==, "/some/native/path/to/an/icon.png");
54 icon2 = g_icon_new_for_string (data, &error);
57 g_free (data);
65 data = g_icon_to_string (icon);
66 g_assert_cmpstr (data, ==, "/some/native/path/to/an/icon with spaces.png");
67 icon2 = g_icon_new_for_string (data, &error);
70 g_free (data);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_tnc.c 44 struct eap_tnc_data *data; local
46 data = os_zalloc(sizeof(*data));
47 if (data == NULL)
49 data->state = WAIT_START;
50 data->fragment_size = 1300;
51 data->tncc = tncc_init();
52 if (data->tncc == NULL) {
53 os_free(data);
57 return data;
63 struct eap_tnc_data *data = priv; local
206 struct eap_tnc_data *data = priv; local
    [all...]
eap_fast.c 82 struct eap_fast_data *data = ctx; local
90 data->session_ticket_used = 0;
91 if (data->provisioning_allowed) {
94 data->provisioning = 1;
95 data->current_pac = NULL;
102 if (data->current_pac == NULL) {
105 data->session_ticket_used = 0;
109 eap_fast_derive_master_secret(data->current_pac->pac_key,
113 data->session_ticket_used = 1;
119 static int eap_fast_parse_phase1(struct eap_fast_data *data,
153 struct eap_fast_data *data; local
229 struct eap_fast_data *data = priv; local
1498 struct eap_fast_data *data = priv; local
1624 struct eap_fast_data *data = priv; local
1642 struct eap_fast_data *data = priv; local
1649 struct eap_fast_data *data = priv; local
1668 struct eap_fast_data *data = priv; local
    [all...]
eap_tls_common.c 26 const u8 **data, size_t *data_len)
41 *data = blob->data;
103 struct eap_ssl_data *data,
115 params->tls_ia = data->tls_ia;
118 * Use blob data, if available. Otherwise, leave reference to external
140 struct eap_ssl_data *data,
146 data->conn = tls_connection_init(sm->ssl_ctx);
147 if (data->conn == NULL) {
153 res = tls_connection_set_params(sm->ssl_ctx, data->conn, params)
    [all...]
  /external/wpa_supplicant/
eap_tls_common.c 27 const u8 **data, size_t *data_len)
41 *data = blob->data;
80 struct eap_ssl_data *data,
90 params->tls_ia = data->tls_ia;
112 struct eap_ssl_data *data,
118 data->conn = tls_connection_init(sm->ssl_ctx);
119 if (data->conn == NULL) {
125 res = tls_connection_set_params(sm->ssl_ctx, data->conn, params);
154 * @data: Data for TLS processin
    [all...]
eap_ttls.c 77 struct eap_ttls_data *data; local
81 data = os_zalloc(sizeof(*data));
82 if (data == NULL)
84 data->ttls_version = EAP_TTLS_VERSION;
85 data->force_ttls_version = -1;
87 data->phase2_type = EAP_TTLS_PHASE2_EAP;
92 data->force_ttls_version = atoi(pos + 8);
93 data->ttls_version = data->force_ttls_version
210 struct eap_ttls_data *data = priv; local
1500 struct eap_ttls_data *data = priv; local
1631 struct eap_ttls_data *data = priv; local
1639 struct eap_ttls_data *data = priv; local
1647 struct eap_ttls_data *data = priv; local
1668 struct eap_ttls_data *data = priv; local
1710 struct eap_ttls_data *data = priv; local
1717 struct eap_ttls_data *data = priv; local
    [all...]
eap_gpsk.c 45 static u8 * eap_gpsk_send_gpsk_2(struct eap_gpsk_data *data, u8 identifier,
48 static u8 * eap_gpsk_send_gpsk_4(struct eap_gpsk_data *data, u8 identifier,
71 static void eap_gpsk_state(struct eap_gpsk_data *data, int state)
74 eap_gpsk_state_txt(data->state),
76 data->state = state;
86 struct eap_gpsk_data *data; local
98 data = os_zalloc(sizeof(*data));
99 if (data == NULL)
101 data->state = GPSK_1
127 struct eap_gpsk_data *data = priv; local
653 struct eap_gpsk_data *data = priv; local
696 struct eap_gpsk_data *data = priv; local
703 struct eap_gpsk_data *data = priv; local
721 struct eap_gpsk_data *data = priv; local
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
datalist.sgml 2 Keyed Data Lists
5 lists of data elements which are accessible by a string or GQuark identifier
9 Keyed data lists provide lists of arbitrary data elements which can be accessed
18 Data lists are used for associating arbitrary data with
26 To add data elements to a datalist use g_datalist_id_set_data(),
31 To get data elements from a datalist use g_datalist_id_get_data() and
35 To iterate over all data elements in a datalist use g_datalist_foreach() (not thread-safe).
38 To remove data elements from a datalist use g_datalist_id_remove_data() an
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
wpabuf.h 2 * Dynamic data buffer
19 * Internal data structure for wpabuf. Please do not touch this directly from
21 * from this file to access data.
25 size_t used; /* length of data in the buffer */
26 u8 *ext_data; /* pointer to external data; NULL if data follows
34 struct wpabuf * wpabuf_alloc_ext_data(u8 *data, size_t len);
35 struct wpabuf * wpabuf_alloc_copy(const void *data, size_t len);
55 * wpabuf_len - Get the current length of a wpabuf buffer data
75 * wpabuf_head - Get pointer to the head of the buffer data
136 os_memcpy(wpabuf_put(buf, len), data, len); local
    [all...]
  /frameworks/base/awt/java/awt/image/
ShortLookupTable.java 38 * The data.
40 private short data[][]; field in class:ShortLookupTable
48 * @param data
49 * the data array.
51 public ShortLookupTable(int offset, short[] data) {
53 this.data = new short[1][data.length];
54 // The data array stored as a reference
55 this.data[0] = data;
    [all...]
  /external/libxml2/include/libxml/
list.h 28 * @lk: the data to deallocate
30 * Callback function used to free data from a list.
35 * @data0: the first data
36 * @data1: the second data
38 * Callback function used to compare 2 data.
45 * @data: the data found in the list
46 * @user: extra user provided data to the walker
52 typedef int (*xmlListWalker) (const void *data, const void *user);
64 void *data);
    [all...]
  /external/icu4c/test/perf/usetperf/
bitset.cpp 22 data = (int32_t*) uprv_malloc(len * BYTES_PER_WORD);
27 uprv_free(data);
33 return (longIndex < len) ? (((data[longIndex] >> bitInLong) & 1) != 0)
43 data[longIndex] |= (1 << bitInLong);
47 for (uint32_t i=0; i<len; ++i) data[i] = 0;
54 uprv_memcpy(newData, data, len * BYTES_PER_WORD);
55 uprv_free(data);
56 data = newData;
57 int32_t* p = data + len;
58 int32_t* limit = data + newLen
    [all...]
  /frameworks/base/libs/rs/
rsHandcode.h 4 static inline void rsHCAPI_AllocationData (RsContext rsc, RsAllocation va, const void * data, uint32_t sizeBytes)
14 cmd->data = data;
16 cmd->data = (void *)(cmd+1);
17 memcpy(cmd+1, data, sizeBytes);
25 static inline void rsHCAPI_Allocation1DSubData (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t count, const void * data, uint32_t sizeBytes)
36 cmd->data = data;
39 cmd->data = (void *)(cmd+1);
40 memcpy(cmd+1, data, sizeBytes)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsRawData.java 27 byte[] data; field in class:SmsRawData
35 byte[] data = new byte[size];
36 source.readByteArray(data);
37 return new SmsRawData(data);
46 public SmsRawData(byte[] data) {
47 this.data = data;
51 return data;
59 dest.writeInt(data.length);
60 dest.writeByteArray(data);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps.c 24 * wps_init - Initialize WPS Registration protocol data
26 * Returns: Pointer to allocated data or %NULL on failure
28 * This function is used to initialize WPS data for a registration protocol
30 * Enrollee. The caller is responsible for freeing this data after the
35 struct wps_data *data = os_zalloc(sizeof(*data)); local
36 if (data == NULL)
38 data->wps = cfg->wps;
39 data->registrar = cfg->registrar;
41 os_memcpy(data->uuid_r, cfg->wps->uuid, WPS_UUID_LEN)
    [all...]
  /external/icu4c/common/unicode/
udata.h 26 * \brief C API: Data loading interface
28 * <h2>Information about data loading interface</h2>
30 * This API is used to find and efficiently load data for ICU and applications
31 * using ICU. It provides an abstract interface that specifies a data type and
32 * name to find and load the data. Normally this API is used by other ICU APIs
33 * to load required data out of the ICU data library, but it can be used to
34 * load data out of other places.
36 * See the User Guide Data Management chapter.
65 * Alias for standard ICU data
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
ioctl_utils.h 28 **| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |**
49 int util_get_param( struct net_device *dev, UINT32 param_type, ULONG *data, UINT32 max_param_len);
50 int util_set_param( struct net_device *dev, UINT32 param_type, ULONG *data, UINT32 max_param_len );
51 int util_get_report_param( struct net_device *dev, UINT32 param_type, ULONG *data, UINT32 max_param_len);
52 int util_set_report_param( struct net_device *dev, UINT32 param_type, ULONG *data, UINT32 max_param_len);
55 int util_get_network_type_in_use(struct net_device *dev, /*int cmd, */ULONG *data );
56 int util_write_hw_register(struct net_device *dev, ULONG *data );
57 int util_read_hw_register(struct net_device *dev, ULONG *data );
58 int util_hal_debug_print(struct net_device *dev, ULONG *data);
59 int util_get_sw_version(struct net_device *dev, ULONG *data );
    [all...]
  /external/elfutils/src/
xelf.h 64 # define xelf_getsym(data, idx, name) \
65 name = &((Elf32_Sym *) (data)->d_buf)[idx]
66 # define xelf_getsym_ptr(data, idx, name) \
67 name = &((Elf32_Sym *) (data)->d_buf)[idx]
68 # define xelf_getsymshndx(data, ndxdata, idx, name1, name2) \
69 (name1 = &((Elf32_Sym *) ((data)->d_buf))[idx]); \
72 # define xelf_update_sym(data, idx, sym) \
73 /* nothing */ ((void) (data), (void) (idx), (void) (sym), 1)
74 # define xelf_update_symshndx(data, ndxdata, idx, name1, name2, datachanged) \
76 ((Elf32_Sym *) ((data)->d_buf))[idx] = *name1;
    [all...]
  /external/libxml2/
list.c 35 void *data; member in struct:_xmlLink
70 * @data0: first data
71 * @data1: second data
73 * Compares two arbitrary data
91 * @data: a data
93 * Search data in the ordered list walking from the beginning
95 * Returns the link containing the data or NULL
98 xmlListLowerSearch(xmlListPtr l, void *data)
104 for(lk = l->sentinel->next;lk != l->sentinel && l->linkCompare(lk->data, data) <0 ;lk = lk->next)
    [all...]

Completed in 758 milliseconds

1 2 3 45 6 7 8 91011>>