Searched refs:serial (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dsp_dec.h103 Word16 *serial, /* i : serial bit stream */
H A Dsp_dec.cpp513 serial = pointer to the serial bit stream buffer (unsigned char)
535 parameters are parsed from the buffer pointed to by serial according to
561 Word16 *serial, // i : serial bit stream
582 Bits2prm (MRDTX, serial, parm);
584 Bits2prm (mode, serial, parm);
636 Word16 *serial, /* i : serial bit stream */
656 Bits2prm(MRDTX, serial, par
633 GSMFrameDecode( Speech_Decode_FrameState *st, enum Mode mode, Word16 *serial, enum RXFrameType frame_type, Word16 *synth) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dsp_enc.h145 Word16 *serial, /* o : serial bit stream */
H A Dsp_enc.cpp602 serial = pointer to the serial bit stream of type Word16
606 serial -> encoded serial bit stream
627 generated parameters are then converted to serial bits.
648 Word16 *serial, // o : serial bit stream
662 // initialize the serial output frame to zero
665 serial[i] = 0;
683 // Parameters to serial bit
715 GSMEncodeFrame( void *state_data, enum Mode mode, Word16 *new_speech, Word16 *serial, enum Mode *usedMode ) argument
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java33 * The accessory may optionally provide a unique serial number
76 String version, String uri, String serial) {
82 mSerial = serial;
146 * Returns the unique serial number for the accessory.
147 * This is an optional serial number that can be used to differentiate
150 * @return the unique serial number
203 String serial = in.readString();
204 return new UsbAccessory(manufacturer, model, description, version, uri, serial);
75 UsbAccessory(String manufacturer, String model, String description, String version, String uri, String serial) argument
/frameworks/base/core/jni/
H A Dandroid_hardware_UsbDeviceConnection.cpp216 char* serial = usb_device_get_serial(device); local
217 if (!serial)
219 jstring result = env->NewStringUTF(serial);
220 free(serial);
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py134 # Prepare serial number option from current_device
245 # Returns the list of serial numbers of connected devices
256 def set_current_device(self, serial):
257 if self.current_device == str(serial):
258 print "Current device already is: " + str(serial)
261 # TODO: this function should probably check the serial is valid.
262 self.current_device = str(serial)
734 return "Usage: set-android-device <serial>"
740 serial = str(arg)
742 if serial i
[all...]
/frameworks/base/services/java/com/android/server/
H A DSystemServer.java150 SerialService serial = null;
679 serial = new SerialService(context);
680 ServiceManager.addService(Context.SERIAL_SERVICE, serial);
/frameworks/base/services/java/com/android/server/usb/
H A DUsbDeviceManager.java231 // configure RNDIS ethernet address based on our serial number using the same algorithm
238 String serial = SystemProperties.get("ro.serialno", "1234567890ABCDEF");
239 int serialLength = serial.length();
240 // XOR the USB serial across the remaining 5 bytes
242 address[i % (ETH_ALEN - 1) + 1] ^= (int)serial.charAt(i);
/frameworks/base/keystore/tests/src/android/security/
H A DAndroidKeyPairGeneratorTest.java466 AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end)
520 assertEquals("The Serial should be the one passed into the params", serial,
465 assertKeyPairCorrect(KeyPair pair, String alias, String keyType, int keySize, AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java2276 private RILRequest findAndRemoveRequestFromList(int serial) { argument
2279 rr = mRequestList.get(serial);
2281 mRequestList.remove(serial);
2290 int serial, error;
2293 serial = p.readInt();
2298 rr = findAndRemoveRequestFromList(serial);
2302 + serial + " error: " + error);

Completed in 1012 milliseconds