/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/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...] |
/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/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...] |
/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...] |
AVIExtractor.cpp | 973 sp<ABuffer> csd = new ABuffer(len3); local 974 uint8_t *dst = csd->data(); 993 // hexdump(csd->data(), csd->size()); 995 return csd; 1040 sp<ABuffer> csd = MakeMPEG4VideoCodecSpecificData(buffer); local 1041 track->mMeta->setData(kKeyESDS, kTypeESDS, csd->data(), csd->size()); 1092 const void *csd; local 1094 CHECK(meta->findData(kKeyAVCC, &type, &csd, &csdSize)) [all...] |
MPEG4Extractor.cpp | 1721 const uint8_t *csd; 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...] |
/frameworks/base/media/libstagefright/mpeg2ts/ |
ESQueue.cpp | 623 static sp<ABuffer> MakeMPEGVideoESDS(const sp<ABuffer> &csd) { 624 sp<ABuffer> esds = new ABuffer(csd->size() + 25); 628 EncodeSize14(&ptr, 22 + csd->size()); 636 EncodeSize14(&ptr, 16 + csd->size()); 645 EncodeSize14(&ptr, csd->size()); 647 memcpy(ptr, csd->data(), csd->size()); 700 sp<ABuffer> csd = new ABuffer(offset); local 701 memcpy(csd->data(), data, offset); 712 // hexdump(csd->data(), csd->size()) 867 sp<ABuffer> csd = new ABuffer(offset); local [all...] |
/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
|
/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
|
/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
|