/external/chromium_org/ui/ozone/platform/dri/ |
dri_wrapper.h | 90 // Return a binary blob associated with |connector|. The binary blob is 92 // could not be found or if the property does not have a binary blob. If valid 97 // Frees |blob| and any resources allocated when it was created. |blob| must 99 virtual void FreePropertyBlob(drmModePropertyBlobRes* blob);
|
/external/harfbuzz_ng/src/ |
hb-face.h | 35 #include "hb-blob.h" 47 hb_face_create (hb_blob_t *blob,
|
hb-uniscribe.cc | 333 /* Destroys blob. */ 335 _hb_rename_font (hb_blob_t *blob, wchar_t *new_name) 346 blob = OT::Sanitizer<OT::OpenTypeFontFile>::sanitize (blob); 349 const char *orig_sfnt_data = hb_blob_get_data (blob, &length); 364 hb_blob_destroy (blob); 412 hb_blob_destroy (blob); 421 hb_blob_destroy (blob); 440 hb_blob_t *blob = hb_face_reference_blob (face); local 441 if (unlikely (!hb_blob_get_length (blob))) [all...] |
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-dbus-new-signals.py | 99 def blobAdded(blob): 100 print "BlobAdded(%s)" % (blob) 102 def blobRemoved(blob): 103 print "BlobRemoved(%s)" % (blob)
|
/frameworks/base/core/tests/coretests/src/android/widget/scroll/ |
RequestRectangleVisibleWithInternalScroll.java | 56 mTextBlob = (TextView) findViewById(R.id.blob);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d3d10shader.h | 225 HRESULT WINAPI D3D10GetInputSignatureBlob(const void *data, SIZE_T data_size, ID3D10Blob **blob); 226 HRESULT WINAPI D3D10GetOutputSignatureBlob(const void *data, SIZE_T data_size, ID3D10Blob **blob); 227 HRESULT WINAPI D3D10GetInputAndOutputSignatureBlob(const void *data, SIZE_T data_size, ID3D10Blob **blob); 228 HRESULT WINAPI D3D10GetShaderDebugInfo(const void *data, SIZE_T data_size, ID3D10Blob **blob);
|
/system/keymaster/include/keymaster/ |
keymaster_defs.h | 277 keymaster_blob_t blob; /* KM_BIGNUM and KM_BYTES*/ member in union:__anon81496::__anon81497 436 param.blob.data = bytes; 437 param.blob.data_length = bytes_len; 464 free((void*)param->blob.data);
|
/art/test/044-proxy/src/ |
BasicTest.java | 45 shapes.blob(); 53 colors.blob(); 133 public String blob(); method in interface:Shapes 157 public String blob(); method in interface:Colors 193 public String blob() { method in class:Mix 194 System.out.println("--- blob");
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8XMLHttpRequestCustom.cpp | 128 Blob* blob = xmlHttpRequest->responseBlob(); local 129 v8SetReturnValueFast(info, blob, xmlHttpRequest); 224 Blob* blob = V8Blob::toNative(object); local 225 ASSERT(blob); 226 xmlHttpRequest->send(blob, exceptionState);
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherBackupHelper.java | 316 byte[] blob = packFavorite(cursor); 317 writeRowToBackup(key, blob, out, data); 394 byte[] blob = packScreen(cursor); 395 writeRowToBackup(key, blob, out, data); 505 byte[] blob = packIcon(dpi, icon); 506 writeRowToBackup(key, blob, out, data); 640 byte[] blob = packWidget(dpi, previewLoader, mIconCache, provider); 642 writeRowToBackup(key, blob, out, data); 805 byte[] blob = c.getBlob(ICON_INDEX); 806 if (blob != null && blob.length > 0) [all...] |
/external/chromium_org/chrome/utility/importer/ |
ie_importer_win.cc | 82 bool BinaryRead(T* data, size_t offset, const std::vector<uint8>& blob) { 83 if (offset + sizeof(T) > blob.size()) 85 memcpy(data, &blob[offset], sizeof(T)); 92 // .cb = 0. Here, before simply casting &blob[offset] to LPITEMIDLIST, 94 // the binary blob. 96 const std::vector<uint8>& blob) { 101 if (head >= idlist_size || !BinaryRead(&id_cb, offset + head, blob)) 107 return reinterpret_cast<LPCITEMIDLIST>(&blob[offset]); 164 const std::vector<uint8>& blob, 172 if (!BinaryRead(&item_count, kItemCountOffset, blob)) [all...] |
/frameworks/av/camera/ |
CameraMetadata.cpp | 449 // Special case: zero blob size means zero sized (NULL) metadata. 456 ALOGE("%s: metadata blob is malformed, blobSize(%zu) should be larger than alignment(%zu)", 463 // NOTE: this doesn't make sense to me. shouldn't the blob 466 ReadableBlob blob; local 467 // arg1 = metadata (blob) 469 if ((err = data.readBlob(blobSize, &blob)) != OK) { 470 ALOGE("%s: Failed to read metadata blob (sized %zu). Possible " 476 // arg2 = offset (blob) 477 // Must be after blob since we don't know offset until after writeBlob. 492 const uintptr_t metadataStart = reinterpret_cast<uintptr_t>(blob.data()) + offset 584 WritableBlob blob; local [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-uniscribe.cc | 336 /* Destroys blob. */ 338 _hb_rename_font (hb_blob_t *blob, wchar_t *new_name) 349 blob = OT::Sanitizer<OT::OpenTypeFontFile>::sanitize (blob); 352 const char *orig_sfnt_data = hb_blob_get_data (blob, &length); 367 hb_blob_destroy (blob); 415 hb_blob_destroy (blob); 424 hb_blob_destroy (blob); 443 hb_blob_t *blob = hb_face_reference_blob (face); local 444 if (unlikely (!hb_blob_get_length (blob))) [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/ |
ImageBitmapFactories.cpp | 38 #include "core/fileapi/Blob.h" 186 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, Blob* blob, ExceptionState& exceptionState) 191 loader->loadBlobAsync(eventTarget.executionContext(), blob); 195 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, Blob* blob, int sx, int sy, int sw, int sh, ExceptionState& exceptionState) 204 loader->loadBlobAsync(eventTarget.executionContext(), blob); 282 void ImageBitmapFactories::ImageBitmapLoader::loadBlobAsync(ExecutionContext* context, Blob* blob) 284 m_loader.start(context, blob->blobDataHandle()) [all...] |
/device/asus/deb/self-extractors/asus/staging/ |
device-partial.mk | 15 # Asus blob(s) necessary for Deb hardware
|
/device/asus/deb/self-extractors/broadcom/staging/ |
device-partial.mk | 15 # Broadcom blob(s) necessary for Deb hardware
|
/device/asus/flo/self-extractors/asus/staging/ |
device-partial.mk | 15 # Asus blob(s) necessary for Flo hardware
|
/device/asus/flo/self-extractors/broadcom/staging/ |
device-partial.mk | 15 # Broadcom blob(s) necessary for Flo hardware
|
/device/asus/fugu/self-extractors/asus/staging/ |
device-partial.mk | 15 # Asus blob(s) necessary for Fugu hardware
|
/device/asus/fugu/self-extractors/broadcom/staging/ |
device-partial.mk | 15 # Broadcom blob(s) necessary for Fugu hardware
|
/device/asus/grouper/self-extractors/nvidia/staging/ |
device-partial.mk | 15 # NVIDIA blob(s) necessary for Grouper hardware
|
/device/asus/tilapia/self-extractors/nvidia/staging/ |
device-partial.mk | 15 # NVIDIA blob(s) necessary for Grouper hardware
|
/device/lge/hammerhead/self-extractors/broadcom/staging/ |
device-partial.mk | 15 # Broadcom blob(s) necessary for Hammerhead hardware
|
/device/lge/mako/self-extractors/broadcom/staging/ |
device-partial.mk | 15 # Broadcom blob(s) necessary for Mako hardware
|
/device/moto/shamu/self-extractors/broadcom/staging/ |
device-partial.mk | 15 # Broadcom blob(s) necessary for Shamu hardware
|