/external/speex/libspeex/ |
buffer.c | 27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 44 char *data; member in struct:SpeexBuffer_ 54 st->data = speex_alloc(size); 64 speex_free(st->data); 72 char *data = _data; local 75 data += len-st->size; 82 SPEEX_COPY(st->data + st->write_ptr, data, end1 - st->write_ptr); 86 SPEEX_COPY(st->data, data+end1 - st->write_ptr, end) 135 char *data = _data; local [all...] |
/external/webkit/WebKit/mac/WebView/ |
WebDataSource.h | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 44 @discussion A WebDataSource represents the data associated with a web page. 46 representation of the data. WebDataSources manage a hierarchy of WebFrames. 64 @method data 65 @discussion The data will be incomplete until the datasource has completely loaded. 66 @result Returns the raw data associated with the datasource. Returns nil 67 if the datasource hasn't loaded any data. 69 - (NSData *)data; 74 of the datasource's data. The representation class is determined by mapping 84 @result Return the frame that represents this data source [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/radius/ |
radius_server.h | 50 void radius_server_deinit(struct radius_server_data *data); 52 int radius_server_get_mib(struct radius_server_data *data, char *buf, 55 void radius_server_eap_pending_cb(struct radius_server_data *data, void *ctx); 65 static inline void radius_server_deinit(struct radius_server_data *data) 69 static inline int radius_server_get_mib(struct radius_server_data *data, 76 radius_server_eap_pending_cb(struct radius_server_data *data, void *ctx)
|
/frameworks/base/core/java/android/util/ |
TypedValue.java | 20 * Container for a dynamically typed data value. Primarily used with 24 /** The value contains no data. */ 27 /** The <var>data</var> field holds a resource identifier. */ 29 /** The <var>data</var> field holds an attribute resource 33 /** The <var>string</var> field holds string data. In addition, if 34 * <var>data</var> is non-zero then it is the string block 38 /** The <var>data</var> field holds an IEEE 754 floating point number. */ 40 /** The <var>data</var> field holds a complex number encoding a 43 /** The <var>data</var> field holds a complex number encoding a fraction 49 * <var>data</var> field holds a generic integer value. * 163 public int data; field in class:TypedValue [all...] |
/frameworks/base/libs/binder/ |
IServiceManager.cpp | 147 Parcel data, reply; local 148 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor()); 149 data.writeString16(name); 150 remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply); 156 Parcel data, reply; local 157 data.writeInterfaceToken(IServiceManager::getInterfaceDescriptor()); 158 data.writeString16(name); 159 data.writeStrongBinder(service); 160 status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply); 170 Parcel data, reply local [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
LayoutSelectorAdapter.java | 36 List<IconListItem> data = new ArrayList<IconListItem>(2); local 37 addItem(data, context.getString(R.string.select_top_text), 39 addItem(data, context.getString(R.string.select_bottom_text), 42 return data; 45 protected static void addItem(List<IconListItem> data, String title, int resource) { 47 data.add(temp);
|
/external/opencore/codecs_v2/video/avc_h264/common/src/ |
reflist.cpp | 407 void SortPicByPicNum(AVCPictureData *data[], int num) 416 if (data[j]->PicNum > data[i]->PicNum) 418 temp = data[j]; 419 data[j] = data[i]; 420 data[i] = temp; 429 void SortPicByPicNumLongTerm(AVCPictureData *data[], int num) 438 if (data[j]->LongTermPicNum < data[i]->LongTermPicNum [all...] |
/frameworks/base/media/libstagefright/codecs/avc/common/src/ |
reflist.cpp | 407 void SortPicByPicNum(AVCPictureData *data[], int num) 416 if (data[j]->PicNum > data[i]->PicNum) 418 temp = data[j]; 419 data[j] = data[i]; 420 data[i] = temp; 429 void SortPicByPicNumLongTerm(AVCPictureData *data[], int num) 438 if (data[j]->LongTermPicNum < data[i]->LongTermPicNum [all...] |
/external/bluetooth/glib/glib/ |
gnode.h | 61 gpointer data); 63 gpointer data); 67 * @src: A pointer to the data which should be copied 68 * @data: Additional data 70 * A function of this signature is used to copy the node data 78 gpointer data); 84 gpointer data; member in struct:_GNode 115 GNode* g_node_new (gpointer data); 120 gpointer data); [all...] |
/external/bluetooth/glib/gio/ |
gunixvolume.c | 299 EjectMountOp *data = user_data; local 307 data->error_string->str); 308 simple = g_simple_async_result_new_from_error (G_OBJECT (data->unix_volume), 309 data->callback, 310 data->user_data, 316 simple = g_simple_async_result_new (G_OBJECT (data->unix_volume), 317 data->callback, 318 data->user_data, 325 g_source_remove (data->error_channel_source_id); 326 g_io_channel_unref (data->error_channel) 338 EjectMountOp *data = user_data; local 376 EjectMountOp *data; local [all...] |
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 33 * application and Android's data backup infrastructure. An application that wishes 44 * When the application makes changes to data that it wishes to keep backed up, 53 * there is a previously-saved data set available for the application being installed, and if so, 54 * begins an immediate restore pass to deliver the backup data as part of the installation 67 * A backup data set consists of one or more "entities," flattened binary data 68 * records that are each identified with a key string unique within the data set. Adding a 69 * record to the active data set or updating an existing record is done by simply 70 * writing new entity data under the desired key. Deleting an entity from the data se [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_DataTest.java | 27 import android.provider.ContactsContract.Data; 35 @TestTargetClass(ContactsContract.Data.class) 56 notes = "Test Data#getContactLookupUri(ContentResolver resolver, Uri dataUri) " + 58 method = "Data#getContactLookupUri", 69 // work without at least one data row in the raw contact. 70 TestData data = rawContact.newDataRow(StructuredName.CONTENT_ITEM_TYPE) local 74 Uri lookupUri = Data.getContactLookupUri(mResolver, data.getUri()); 79 lookupContact.getId(), data.load().getRawContact().load().getContactId()); 84 notes = "Test Data#getContactLookupUri(ContentResolver resolver, Uri dataUri) " 94 TestData data = rawContact.newDataRow(StructuredName.CONTENT_ITEM_TYPE) local [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/ |
eap_tls_common.h | 19 * struct eap_ssl_data - TLS data for EAP methods 23 * conn - TLS connection context data from tls_connection_init() 74 * if the TLS data is not fragmented 100 int eap_peer_tls_ssl_init(struct eap_sm *sm, struct eap_ssl_data *data, 102 void eap_peer_tls_ssl_deinit(struct eap_sm *sm, struct eap_ssl_data *data); 103 u8 * eap_peer_tls_derive_key(struct eap_sm *sm, struct eap_ssl_data *data, 106 struct eap_ssl_data *data, const u8 *in_data, size_t in_len, 108 int eap_peer_tls_process_helper(struct eap_sm *sm, struct eap_ssl_data *data, 114 int eap_peer_tls_reauth_init(struct eap_sm *sm, struct eap_ssl_data *data); 115 int eap_peer_tls_status(struct eap_sm *sm, struct eap_ssl_data *data, [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/ |
ResponseData.java | 27 * Format the data appropriate for TERMINAL RESPONSE and write it into 91 byte[] data; 94 data = new byte[1]; 95 data[0] = mYesNoResponse ? GET_INKEY_YES : GET_INKEY_NO; 99 data = mInData.getBytes("UTF-16"); 105 data = new byte[size]; 109 System.arraycopy(tempData, 1, data, 0, size); 111 data = GsmAlphabet.stringToGsm8BitPacked(mInData); 114 data = new byte[0]; 116 data = new byte[0] [all...] |
/external/wpa_supplicant/ |
tls.h | 41 * @ca_cert_blob: ca_cert as inlined data or %NULL if not used 50 * @client_cert_blob: client_cert as inlined data or %NULL if not used 54 * @private_key_blob: private_key as inlined data or %NULL if not used 58 * @dh_file: File name for DH/DSA data in PEM format, or %NULL if not used 59 * @dh_blob: dh_file as inlined data or %NULL if not used 73 * (file path or reference to certificate store) or by providing the same data 74 * as a pointer to the data in memory. Only one option will be used for each 106 * @conf: Configuration data for TLS library 107 * Returns: Context data to be used as tls_ctx in calls to other functions, 120 * @tls_ctx: TLS context data from tls_init( [all...] |
eap_vendor_test.c | 40 struct eap_vendor_test_data *data; local 41 data = os_zalloc(sizeof(*data)); 42 if (data == NULL) 44 data->state = INIT; 45 data->first_try = 1; 46 return data; 52 struct eap_vendor_test_data *data = priv; local 53 os_free(data); 73 struct eap_vendor_test_data *data = priv local 151 struct eap_vendor_test_data *data = priv; local 158 struct eap_vendor_test_data *data = priv; local [all...] |
/external/srec/srec/test/SRecTestAudio/src/ |
SRecTestAudio.c | 138 APPL_GRAMMAR_DATA grammars [MAX_NUM_REC_CONTEXTS]; /* Grammar data */ 146 LCHAR raw_waveform_filename [P_PATH_MAX]; /* Name of file of saved waveform data. */ 147 PFile *raw_waveform_file; /* Pointer to file of saved waveform data. */ 167 static int srec_test_recognize_live ( SR_Grammar *active_grammar, ApplicationData *data, AUDIOIN_H audio_input_handle, 169 static void srec_test_log_recognition_failure ( ApplicationData *data ); 255 void srec_test_delete_grammar ( ApplicationData *data, int grammar_num ) 259 if ( grammar_num < data->grammarCount ) 261 if ( ( data->grammarCount - grammar_num ) > 1 ) 263 memmove ( &data->grammars [grammar_num], &data->grammars [data->grammarCount - 1] [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
HandleThread.java | 74 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) { 79 handleTHCR(client, data); 81 handleTHDE(client, data); 83 handleTHST(client, data); 85 handleTHNM(client, data); 87 handleSTKL(client, data); 89 handleUnknownChunk(client, type, data, isReply, msgId); 99 private void handleTHCR(Client client, ByteBuffer data) { 103 threadId = data.getInt(); 104 nameLen = data.getInt() [all...] |
/external/bluetooth/bluez/gdbus/ |
object.c | 70 /* Gather enough data to have a single complete type */ 147 struct generic_data *data, const char *path) 154 g_free(data->introspect); 160 for (list = data->interfaces; list; list = list->next) { 161 struct interface_data *iface = list->data; 183 data->introspect = g_string_free(gstr, FALSE); 187 DBusMessage *message, struct generic_data *data) 196 if (!data->introspect) 197 generate_introspection_xml(connection, data, 204 dbus_message_append_args(reply, DBUS_TYPE_STRING, &data->introspect 216 struct generic_data *data = user_data; local 242 struct generic_data *data = user_data; local 302 struct generic_data *data = NULL; local 335 struct generic_data *data; local 365 struct generic_data *data = NULL; local 388 struct generic_data *data = NULL; local 470 struct generic_data *data; local 500 struct generic_data *data = NULL; local [all...] |
mainloop.c | 68 DBusMessage *msg, void *data) 70 struct disconnect_data *dc_data = data; 82 static gboolean message_dispatch_cb(void *data) 84 DBusConnection *connection = data; 96 static gboolean watch_func(GIOChannel *chan, GIOCondition cond, gpointer data) 98 DBusWatch *watch = data; 115 static dbus_bool_t add_watch(DBusWatch *watch, void *data) 118 DBusConnection *conn = data; 143 static void remove_watch(DBusWatch *watch, void *data) 157 static void watch_toggled(DBusWatch *watch, void *data) [all...] |
/external/bluetooth/bluez/plugins/ |
service.c | 82 static int compute_seq_size(sdp_data_t *data) 84 int unit_size = data->unitSize; 85 sdp_data_t *seq = data->val.dataseq; 124 ctx_data->stack_head->data = sdp_data_alloc(SDP_SEQ8, NULL); 126 ctx_data->stack_head->data = sdp_data_alloc(SDP_ALT8, NULL); 155 ctx_data->stack_head->data = sdp_xml_parse_datatype(element_name, 158 if (ctx_data->stack_head->data == NULL) 173 if (ctx_data->stack_head && ctx_data->stack_head->data) { 175 ctx_data->stack_head->data); 179 ctx_data->stack_head->data = NULL 283 struct record_data *data = list->data; local [all...] |
/sdk/emulator/sensors/ |
sensors_qemu.c | 125 * the sensors data (it is passed to data__data_open() below 138 handle->data[0] = dup(ctl->fd); 203 * shall send back an appropriate data block to the system. 223 /** SENSORS DATA DEVICE 225 ** This one is used to read sensor data from the hardware. 226 ** We implement this by simply reading the data from the 254 SensorData* data = (void*)dev; local 256 D("%s: dev=%p fd=%d", __FUNCTION__, dev, handle->data[0]); 257 memset(&data->sensors, 0, sizeof(data->sensors)) 276 SensorData* data = (void*)dev; local 314 SensorData* data = (void*)dev; local 418 SensorData* data = (SensorData*)dev; local [all...] |
/build/tools/droiddoc/src/ |
TodoFile.java | 48 public static void setHDF(HDF data, String base, SourcePositionInfo pos, String name, 50 data.setValue(base + ".pos", pos.toString()); 51 data.setValue(base + ".name", name); 52 data.setValue(base + ".descr", descr); 66 HDF data = DroidDoc.makeHDF(); local 67 DroidDoc.setPageTitle(data, "Missing Documentation"); 87 setHDF(data, base + errors, cl.position(), "<class comment>", MISSING); 97 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), 112 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), 128 setHDF(data, base + errors, f.position(), f.name(), MISSING) [all...] |
/external/icu4c/tools/ctestfw/unicode/ |
datamap.h | 21 /** Holder of test data and settings. Allows addressing of items by name. 23 * and info data, names are keys in data. Currently, we return scalar strings 38 * @param key name of the data field. 39 * @return a string containing the data 45 * @param key name of the data field. 46 * @return an integer containing the data 52 * @param key name of the data field. 60 * @param key name of the data field. 69 * @param key name of the data field [all...] |
/external/webkit/WebCore/platform/posix/ |
FileSystemPOSIX.cpp | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 53 if (!fsRep.data() || fsRep.data()[0] == '\0') 59 return !stat(fsRep.data(), &fileInfo); 66 if (!fsRep.data() || fsRep.data()[0] == '\0') 70 return !unlink(fsRep.data()); 77 if (!fsRep.data() || fsRep.data()[0] == '\0') 81 return !rmdir(fsRep.data()); [all...] |