HomeSort by relevance Sort by last modified time
    Searched full:csd (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/icu4c/i18n/
ucsdet.cpp 33 CharsetDetector* csd = new CharsetDetector(*status); local
36 delete csd;
37 csd = NULL;
40 return (UCharsetDetector *) csd;
46 CharsetDetector *csd = (CharsetDetector *) ucsd; local
47 delete csd;
118 CharsetDetector *csd = (CharsetDetector *) ucsd; local
120 return (const UCharsetMatch**)csd->detectAll(*maxMatchesFound,*status);
124 // ucsdet_getDetectableCharsetName(const UCharsetDetector *csd, int32_t index, UErrorCode *status)
129 // return csd->getCharsetName(index,*status)
160 CharsetDetector *csd = (CharsetDetector *) ucsd; local
    [all...]
  /external/icu4c/samples/csdet/
csdet.c 30 UCharsetDetector* csd; local
51 csd = ucsdet_open(&status);
52 ucsdet_setText(csd, buffer, inputLength, &status);
54 csm = ucsdet_detectAll(csd, &matchCount, &status);
68 ucsdet_close(csd);
  /external/icu4c/test/intltest/
csdetest.cpp 157 LocalUCharsetDetectorPointer csd(ucsdet_open(&status));
169 ucsdet_setText(csd.getAlias(), bytes, byteLength, &status);
172 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status);
246 LocalUCharsetDetectorPointer csd(ucsdet_open(status));
247 LocalUEnumerationPointer e(ucsdet_getAllDetectableCharsets(csd.getAlias(), status));
278 UCharsetDetector *csd = ucsdet_open(&status); local
282 ucsdet_setText(csd, bytes, byteLength, &status);
283 match = ucsdet_detect(csd, &status);
296 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage */
301 ucsdet_close(csd);
318 UCharsetDetector *csd = ucsdet_open(&status); local
378 UCharsetDetector *csd = ucsdet_open(&status); local
446 UCharsetDetector *csd = ucsdet_open(&status); local
587 UCharsetDetector *csd = ucsdet_open(&status); local
671 UCharsetDetector *csd = ucsdet_open(&status); local
721 UCharsetDetector *csd = ucsdet_open(&status); local
    [all...]
  /external/icu4c/test/cintltst/
ucsdetst.c 93 UCharsetDetector *csd = ucsdet_open(&status); local
94 UEnumeration *e = ucsdet_getAllDetectableCharsets(csd, &status);
113 ucsdet_close(csd);
126 UCharsetDetector *csd = ucsdet_open(&status); local
133 ucsdet_setText(csd, bytes, byteLength, &status);
139 match = ucsdet_detect(csd, &status);
152 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage */
156 ucsdet_close(csd);
172 UCharsetDetector *csd = ucsdet_open(&status); local
177 ucsdet_setText(csd, beBytes, beLength, &status)
235 UCharsetDetector *csd = ucsdet_open(&status); local
288 UCharsetDetector *csd = ucsdet_open(&status); local
393 UCharsetDetector *csd = ucsdet_open(&status); local
478 UCharsetDetector *csd = ucsdet_open(&status); local
556 UCharsetDetector *csd = ucsdet_open(&status); local
    [all...]
  /frameworks/base/media/libstagefright/rtsp/
APacketSource.cpp 175 sp<ABuffer> csd = new ABuffer(csdSize); local
176 uint8_t *out = csd->data();
213 // hexdump(csd->data(), csd->size());
215 return csd;
245 sp<ABuffer> csd = new ABuffer(sizeof(kStaticESDS) + 2); local
246 memcpy(csd->data(), kStaticESDS, sizeof(kStaticESDS));
247 csd->data()[sizeof(kStaticESDS)] = (x >> 8) & 0xff;
248 csd->data()[sizeof(kStaticESDS) + 1] = x & 0xff;
250 // hexdump(csd->data(), csd->size())
294 sp<ABuffer> csd = new ABuffer(sizeof(kStaticESDS) + config->size()); local
380 sp<ABuffer> csd = new ABuffer(len3); local
    [all...]
  /external/qemu/android/camera/
camera-service.c 431 _camera_service_init(CameraServiceDesc* csd)
439 memset(csd->camera_info, 0, sizeof(CameraInfo) * MAX_CAMERA);
440 csd->camera_count = 0;
452 csd->camera_count < connected_cnt; i++) {
489 memcpy(csd->camera_info + csd->camera_count, found, sizeof(CameraInfo));
491 if (csd->camera_info[csd->camera_count].direction != NULL) {
492 free(csd->camera_info[csd->camera_count].direction)
723 CameraServiceDesc* csd = (CameraServiceDesc*)opaque; local
1406 CameraServiceDesc* csd = (CameraServiceDesc*)opaque; local
    [all...]
  /external/kernel-headers/original/linux/mmc/
card.h 66 u32 raw_csd[4]; /* raw card CSD */
69 struct mmc_csd csd; /* card specific */ member in struct:mmc_card
  /frameworks/base/media/libstagefright/mpeg2ts/
ESQueue.cpp 642 static sp<ABuffer> MakeMPEGVideoESDS(const sp<ABuffer> &csd) {
643 sp<ABuffer> esds = new ABuffer(csd->size() + 25);
647 EncodeSize14(&ptr, 22 + csd->size());
655 EncodeSize14(&ptr, 16 + csd->size());
664 EncodeSize14(&ptr, csd->size());
666 memcpy(ptr, csd->data(), csd->size());
719 sp<ABuffer> csd = new ABuffer(offset); local
720 memcpy(csd->data(), data, offset);
731 // hexdump(csd->data(), csd->size())
886 sp<ABuffer> csd = new ABuffer(offset); local
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_database.h 47 // three databases: browse, download and client-side detection (csd)
51 // these downloaded contents. The csd whitelist database contains URLs
63 // |enable_client_side_whitelist| is used to control the csd whitelist
243 // Loads the given full-length hashes to the csd whitelist. If the number
248 // Call this method if an error occured with the csd whitelist. This will
310 // This is set to true if the csd whitelist is too large to be stored in
311 // memory, if the kill switch URL is on the csd whitelist or if there was
  /frameworks/base/media/libstagefright/
avc_utils.cpp 268 sp<ABuffer> csd = new ABuffer(csdSize); local
269 uint8_t *out = csd->data();
300 meta->setData(kKeyAVCC, kTypeAVCC, csd->data(), csd->size());
387 sp<ABuffer> csd = new ABuffer(sizeof(kStaticESDS) + 2); local
388 memcpy(csd->data(), kStaticESDS, sizeof(kStaticESDS));
390 csd->data()[sizeof(kStaticESDS)] =
393 csd->data()[sizeof(kStaticESDS) + 1] =
396 meta->setData(kKeyESDS, 0, csd->data(), csd->size())
    [all...]
  /external/bluetooth/bluez/audio/
telephony-maemo6.c 49 #define CSD_CSNET_BUS_NAME "com.nokia.csd.CSNet"
50 #define CSD_CSNET_PATH "/com/nokia/csd/csnet"
51 #define CSD_CSNET_IFACE "com.nokia.csd.CSNet"
52 #define CSD_CSNET_REGISTRATION "com.nokia.csd.CSNet.NetworkRegistration"
53 #define CSD_CSNET_OPERATOR "com.nokia.csd.CSNet.NetworkOperator"
54 #define CSD_CSNET_SIGNAL "com.nokia.csd.CSNet.SignalStrength"
69 /* CSD CALL plugin D-Bus definitions */
70 #define CSD_CALL_BUS_NAME "com.nokia.csd.Call"
71 #define CSD_CALL_INTERFACE "com.nokia.csd.Call"
72 #define CSD_CALL_INSTANCE "com.nokia.csd.Call.Instance
    [all...]
  /external/tcpdump/
enc.h 5 * Angelos D. Keromytis (kermit@csd.uch.gr) and
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.cpp 187 buffer->meta()->setInt32("csd", true);
215 buffer->meta()->setInt32("csd", true);
218 msg->setObject("csd", buffer);
233 buffer->meta()->setInt32("csd", true);
  /frameworks/base/cmds/stagefright/
sf2.cpp 332 buffer->meta()->setInt32("csd", true);
360 buffer->meta()->setInt32("csd", true);
363 msg->setObject("csd", buffer);
378 buffer->meta()->setInt32("csd", true);
384 buffer->meta()->setInt32("csd", true);
392 buffer->meta()->setInt32("csd", true);
  /bionic/libc/kernel/common/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /development/ndk/platforms/android-3/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card

Completed in 948 milliseconds

1 2 3