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

1 2 3 4 5 6 7 891011>>

  /external/wpa_supplicant/
eap_psk.c 42 struct eap_psk_data *data; local
49 data = os_zalloc(sizeof(*data));
50 if (data == NULL)
52 eap_psk_key_setup(config->eappsk, data->ak, data->kdk);
53 wpa_hexdump_key(MSG_DEBUG, "EAP-PSK: AK", data->ak, EAP_PSK_AK_LEN);
54 wpa_hexdump_key(MSG_DEBUG, "EAP-PSK: KDK", data->kdk, EAP_PSK_KDK_LEN);
55 data->state = PSK_INIT;
58 data->id_p = os_malloc(config->nai_len)
75 struct eap_psk_data *data = priv; local
360 struct eap_psk_data *data = priv; local
404 struct eap_psk_data *data = priv; local
411 struct eap_psk_data *data = priv; local
430 struct eap_psk_data *data = priv; local
    [all...]
eap_tls_common.h 32 * data is not fragmented */
49 int eap_tls_ssl_init(struct eap_sm *sm, struct eap_ssl_data *data,
51 void eap_tls_ssl_deinit(struct eap_sm *sm, struct eap_ssl_data *data);
52 u8 * eap_tls_derive_key(struct eap_sm *sm, struct eap_ssl_data *data,
55 struct eap_sm *sm, struct eap_ssl_data *data, const u8 *in_data,
57 int eap_tls_process_helper(struct eap_sm *sm, struct eap_ssl_data *data,
61 u8 * eap_tls_build_ack(struct eap_ssl_data *data, size_t *respDataLen, u8 id,
63 int eap_tls_reauth_init(struct eap_sm *sm, struct eap_ssl_data *data);
64 int eap_tls_status(struct eap_sm *sm, struct eap_ssl_data *data, char *buf,
66 const u8 * eap_tls_process_init(struct eap_sm *sm, struct eap_ssl_data *data,
    [all...]
  /frameworks/base/media/libdrm/mobile2/include/util/domcore/
CharacterDataImpl.h 35 * @param data The specify character data.
37 CharacterDataImpl(const DOMString* data);
40 * The character data of the node that implements this interface. The DOM
41 * implementation may not put arbitrary limits on the amount of data
43 * implementation limits may mean that the entirety of a node's data may
45 * may call <code>substringData</code> to retrieve the data in
53 * @return the character data.
58 * The character data of the node that implements this interface. The DOM
59 * implementation may not put arbitrary limits on the amount of data
    [all...]
  /external/opencore/engines/common/include/
pv_plugin_interfaces.h 111 // DATA TYPES
133 * This API returns multimedias type supported by the data source/sink -
134 * Audio, Video, Data etc. Each supported type is indicated by a MIME type structure.
135 * @return Multimedia types supported by the data source/sink. The reference
183 * Base class for data sources
192 * Method called by a MDataSink to request the data source to fill aBuffer with data.
195 * This method is used when a data source is passively waiting for requests from a consumer ie a data sink
196 * to fill a buffer. The data source must call the BufferFilledL member on aConsumer when it has fille
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_ttls.c 86 struct eap_ttls_data *data; local
90 data = os_zalloc(sizeof(*data));
91 if (data == NULL)
93 data->ttls_version = EAP_TTLS_VERSION;
94 data->force_ttls_version = -1;
96 data->phase2_type = EAP_TTLS_PHASE2_EAP;
102 data->force_ttls_version = atoi(pos + 8);
103 data->ttls_version = data->force_ttls_version
174 struct eap_ttls_data *data = priv; local
1799 struct eap_ttls_data *data = priv; local
1852 struct eap_ttls_data *data = priv; local
1860 struct eap_ttls_data *data = priv; local
1872 struct eap_ttls_data *data = priv; local
1893 struct eap_ttls_data *data = priv; local
1935 struct eap_ttls_data *data = priv; local
1942 struct eap_ttls_data *data = priv; local
    [all...]
  /external/openssl/crypto/des/
des3s.cpp 41 unsigned long data[2]; local
48 des_encrypt3(&data[0],key1,key2,key3);
50 des_encrypt3(&data[0],key1,key2,key3);
51 des_encrypt3(&data[0],key1,key2,key3);
52 des_encrypt3(&data[0],key1,key2,key3);
55 des_encrypt3(&data[0],key1,key2,key3);
56 des_encrypt3(&data[0],key1,key2,key3);
57 des_encrypt3(&data[0],key1,key2,key3);
58 des_encrypt3(&data[0],key1,key2,key3);
60 des_encrypt3(&data[0],key1,key2,key3)
    [all...]
dess.cpp 41 unsigned long data[2]; local
48 des_encrypt1(&data[0],key,1);
50 des_encrypt1(&data[0],key,1);
51 des_encrypt1(&data[0],key,1);
52 des_encrypt1(&data[0],key,1);
55 des_encrypt1(&data[0],key,1);
56 des_encrypt1(&data[0],key,1);
57 des_encrypt1(&data[0],key,1);
58 des_encrypt1(&data[0],key,1);
60 des_encrypt1(&data[0],key,1)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
EventLogTags.logtags 8 # For data connection on PDP context, reached the data-out-without-data-in
18 # Reregister to data network - timed out with no incoming packets.
27 # Data network registration failed after successful voice registration
30 # Suspicious status of data connection while radio poweroff
36 # CDMA data network setup failure
39 # CDMA data network drop
45 # GSM data connection state transition
51 # CDMA data connection state transitio
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
Statistics.java 29 /** {@code non-null;} data about each type of item */
30 private final HashMap<String, Data> dataMap;
36 dataMap = new HashMap<String, Data>(50);
46 Data data = dataMap.get(typeName); local
48 if (data == null) {
49 dataMap.put(typeName, new Data(item, typeName));
51 data.add(item);
79 TreeMap<String, Data> sortedData = new TreeMap<String, Data>();
    [all...]
  /development/host/windows/prebuilt/usb/
AdbWinApi.a 6 L.text `.data@?.bss??.idata$4@?.idata$5@?.idata$7 @?AdbWinApi.dll.file??gfake.text.data.bss.idata$4.idata$5.idata$7__AdbWinApi_a_inamedkth.o/ 1189011612 15358710545 100644 685 `
8 L>.text `.data@?.bss??.idata$2 @?.idata$5@?.idata$4@?  .file??gfakehnamefthunk.text.data.bss.idata$2.idata$5.idata$4+__head_AdbWinApi_a__AdbWinApi_a_iname
13 .text,X `.data@?.bss??.idata$74b.idata$58l.idata$4<v.idata$6@?%?? AdbWriteEndpointSync .text.data.bss.idata$7.idata$5.idata$4.idata$66I_AdbWriteEndpointSync__imp__AdbWriteEndpointSync__head_AdbWinApi_a
17 .text,X `.data@?.bss??.idata$74b.idata$58l.idata$4<v.idata$6@?%?? AdbReadEndpointSync .text.data.bss.idata$7.idata$5.idata$4.idata$64G_AdbReadEndpointSync__imp__AdbReadEndpointSync__head_AdbWinApi_a
21 .text,d `.data@?.bss??.idata$74n.idata$58x.idata$4<?.idata$6"@?%??
22 AdbOpenDefaultBulkWriteEndpoint .text.data.bss.idata$7.idata$5.idata$4.idata$6 (…)
    [all...]
  /external/srec/srec/ca/
utt_basi.c 73 if (hUtt->data.utt_type != 0)
76 init_utterance(&hUtt->data, LIVE_INPUT, 3*hFrontPar->mel_dim, /* TODO: change to proper function */
80 set_voicing_durations(&hUtt->data, hFrontPar->voice_duration / 2,
85 set_voicing_durations(&hUtt->data, hFrontPar->voice_duration,
102 if (hUtt->data.utt_type == 0)
107 if (hUtt->data.utt_type == LIVE_INPUT)
109 free_utterance(&hUtt->data);
110 hUtt->data.utt_type = 0;
129 if (hUtt->data.utt_type != LIVE_INPUT)
132 status_code = advance_utterance_frame(&hUtt->data);
    [all...]
utt_data.c 46 if (utterance_started(&hUtt->data))
48 if ((gap = getBlockGap(hUtt->data.gen_utt.frame)) > 0)
49 (void) setRECframePtr(hUtt->data.gen_utt.frame, gap, 1);
50 if (hUtt->data.gen_utt.frame->holdOffPeriod > 0)
51 setRECframePtr(hUtt->data.gen_utt.frame, -MIN(hUtt->data.gen_utt.frame->holdOffPeriod, getFrameGap(hUtt->data.gen_utt.frame)), 1);
52 while (!(rec_frame_voicing_status(hUtt->data.gen_utt.frame) & VOICE_BIT))
54 incRECframePtr(hUtt->data.gen_utt.frame);
55 if (getFrameGap(hUtt->data.gen_utt.frame) == 0
    [all...]
  /frameworks/base/awt/java/awt/image/
BandedSampleModel.java 28 * stored in a band interleaved method. Each pixel's sample takes one data
66 * Instantiates a new BandedSampleModel object with the specified data type
67 * of samples, the width, height and bands number of image data.
70 * the data type of samples.
72 * the width of image data.
74 * the height of image data.
84 * Instantiates a new BandedSampleModel object with the specified data type
85 * of samples, the width, height and bands number of image data.
88 * the data type of samples.
90 * the width of image data
112 DataBuffer data = null; local
    [all...]
ByteLookupTable.java 38 * The data.
40 private byte data[][]; field in class:ByteLookupTable
48 * @param data
49 * the data array of bytes.
51 public ByteLookupTable(int offset, byte[] data) {
53 if (data.length < 1)
54 throw new IllegalArgumentException("Length of data should not be less then one");
55 this.data = new byte[1][data.length];
56 // The data array stored as a referenc
    [all...]
  /external/icu4c/data/unidata/
ucdterms.txt 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
3 Unicode Data Files include all data files under the directories
9 INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"),
12 DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
20 the Unicode data files and associated documentation (the "Data Files") or
22 Data Files or Software without restriction, including without limitation the
24 the Data Files or Software, and to permit persons to whom the Data Files o
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius_server.c 125 radius_server_get_client(struct radius_server_data *data, struct in_addr *addr,
128 struct radius_client *client = data->clients;
179 static void radius_server_session_free(struct radius_server_data *data,
182 eloop_cancel_timeout(radius_server_session_timeout, data, sess);
183 eloop_cancel_timeout(radius_server_session_remove_timeout, data, sess);
195 data->num_sess--;
199 static void radius_server_session_remove(struct radius_server_data *data,
205 eloop_cancel_timeout(radius_server_session_remove_timeout, data, sess);
216 radius_server_session_free(data, sess);
228 struct radius_server_data *data = eloop_ctx local
237 struct radius_server_data *data = eloop_ctx; local
667 struct radius_server_data *data = eloop_ctx; local
1032 struct radius_server_data *data; local
1249 struct radius_server_data *data = sess->server; local
1259 struct radius_server_data *data = sess->server; local
    [all...]
  /external/elfutils/libelf/
elf_rawdata.c 28 elf_rawdata (scn, data)
30 Elf_Data *data;
38 /* If `data' is not NULL this means we are not addressing the initial
39 data in the file. But this also means this data is already read
40 (since otherwise it is not possible to have a valid `data' pointer)
41 and all the data structures are initialized as well. In this case
42 we can simply walk the list of data records. */
43 if (data != NULL
46 /* We don't allow accessing any but the data read from the fil
    [all...]
  /external/skia/gm/
gradients.cpp 29 static SkShader* MakeLinear(const SkPoint pts[2], const GradData& data,
31 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos,
32 data.fCount, tm, mapper);
35 static SkShader* MakeRadial(const SkPoint pts[2], const GradData& data,
40 return SkGradientShader::CreateRadial(center, center.fX, data.fColors,
41 data.fPos, data.fCount, tm, mapper);
44 static SkShader* MakeSweep(const SkPoint pts[2], const GradData& data,
49 return SkGradientShader::CreateSweep(center.fX, center.fY, data.fColors
    [all...]
  /external/webkit/JavaScriptCore/wtf/
Threading.cpp 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
34 NewThreadContext(ThreadFunction entryPoint, void* data, const char* name)
36 , data(data)
42 void* data; member in struct:WTF::NewThreadContext
62 void* data = context->data; local
65 return entryPoint(data);
68 ThreadIdentifier createThread(ThreadFunction entryPoint, void* data, const char* name)
77 NewThreadContext* context = new NewThreadContext(entryPoint, data, name)
    [all...]
  /frameworks/base/libs/binder/
IPermissionController.cpp 42 Parcel data, reply; local
43 data.writeInterfaceToken(IPermissionController::getInterfaceDescriptor());
44 data.writeString16(permission);
45 data.writeInt32(pid);
46 data.writeInt32(uid);
47 remote()->transact(CHECK_PERMISSION_TRANSACTION, data, &reply);
59 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
61 //printf("PermissionController received: "); data.print();
64 CHECK_INTERFACE(IPermissionController, data, reply);
65 String16 permission = data.readString16()
    [all...]
  /frameworks/base/libs/surfaceflinger_client/
ISurfaceFlingerClient.cpp 69 Parcel data, reply; local
70 data.writeInterfaceToken(ISurfaceFlingerClient::getInterfaceDescriptor());
71 remote()->transact(GET_CBLK, data, &reply);
84 Parcel data, reply; local
85 data.writeInterfaceToken(ISurfaceFlingerClient::getInterfaceDescriptor());
86 data.writeInt32(pid);
87 data.writeString8(name);
88 data.writeInt32(display);
89 data.writeInt32(w);
90 data.writeInt32(h)
100 Parcel data, reply; local
109 Parcel data, reply; local
    [all...]
  /external/apache-http/src/org/apache/http/util/
EncodingUtils.java 52 * @param data the byte array to be encoded
59 final byte[] data,
65 if (data == null) {
74 return new String(data, offset, length, charset);
76 return new String(data, offset, length);
86 * @param data the byte array to be encoded
90 public static String getString(final byte[] data, final String charset) {
91 if (data == null) {
94 return getString(data, 0, data.length, charset)
    [all...]
  /external/opencore/oscl/oscl/osclutil/src/
oscl_bin_stream.h 33 * \brief Defines a set of binary stream classes which handle portable input / output of binary data regardless of the native byte order.
104 //! This methods specifies the data buffer to attach to the stream.
172 /* Position of the beginning of the data buffer */
175 /* Current data buffer position */
178 /* length of data buffer */
226 //! This method reads 'length' number of bytes from the stream and places them in 'data'.
228 \param data is a pointer to the place to store the bytes read
232 int8 * data,
252 //! This method reads a int8 from the stream and stores it in 'data'.
253 OsclBinIStreamLittleEndian & operator>>(int8 & data);
    [all...]
  /external/bluetooth/bluez/audio/
pcm_bluetooth.c 97 sbc_t sbc; /* Codec data */
139 struct bluetooth_a2dp a2dp; /* A2DP data */
167 struct bluetooth_data *data = param; local
174 data->server.events = POLLIN;
175 /* note: only errors for data->stream.events */
177 fds[0] = data->server;
178 fds[1] = data->stream;
181 period_time = 1000000.0 * data->io.period_size / data->io.rate;
194 if (data->stopped
260 struct bluetooth_data *data = io->private_data; local
277 struct bluetooth_data *data = io->private_data; local
288 struct bluetooth_data *data = io->private_data; local
322 struct bluetooth_data *data = io->private_data; local
333 struct bluetooth_data *data = io->private_data; local
431 struct bluetooth_data *data = io->private_data; local
690 struct bluetooth_data *data = io->private_data; local
764 struct bluetooth_data *data = io->private_data; local
797 struct bluetooth_data *data = io->private_data; local
848 struct bluetooth_data *data = io->private_data; local
906 struct bluetooth_data *data = io->private_data; local
1005 struct bluetooth_data *data = io->private_data; local
1214 struct bluetooth_data *data = io->private_data; local
1267 struct bluetooth_data *data = io->private_data; local
1723 struct bluetooth_data *data; local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
HexEncoder.java 41 * encode the input data producing a Hex output stream.
46 byte[] data,
54 int v = data[i] & 0xff;
70 * decode the Hex encoded byte data writing it to the given output stream,
76 byte[] data,
89 if (!ignore((char)data[end - 1]))
100 while (i < end && ignore((char)data[i]))
105 b1 = decodingTable[data[i++]];
107 while (i < end && ignore((char)data[i]))
112 b2 = decodingTable[data[i++]]
    [all...]

Completed in 619 milliseconds

1 2 3 4 5 6 7 891011>>