HomeSort by relevance Sort by last modified time
    Searched full:blob (Results 26 - 50 of 1661) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/nvram/hal/
fake_nvram_storage.cpp 78 nvram::storage::Status LoadFile(const char* name, nvram::Blob* blob) {
100 if (!blob->Resize(data_file_stat.st_size)) {
105 if (!android::base::ReadFully(data_file_fd.get(), blob->data(),
106 blob->size())) {
114 // Writes blob to the storage object indicated by |name|.
115 nvram::storage::Status StoreFile(const char* name, const nvram::Blob& blob) {
127 if (!android::base::WriteFully(data_file_fd.get(), blob.data(),
128 blob.size()))
    [all...]
  /system/security/keystore/
blob.h 29 /* Here is the file format. There are two parts in blob.value, the secret and
31 * can be found in blob.length. The description is stored after the secret in
32 * plaintext, and its size is specified in blob.info. The total size of the two
34 * the second is the blob's type, and the third byte is flags. Fields other
35 * than blob.info, blob.length, and blob.value are modified by encryptBlob()
52 struct __attribute__((packed)) blob { struct
78 class Blob {
80 Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength
    [all...]
  /external/libtextclassifier/common/memory_image/
in-memory-model-data.cc 31 DataBlobView blob = data_store_.GetData(kTaskSpecDataStoreEntryName); local
32 if (blob.data() == nullptr) {
33 TC_LOG(ERROR) << "Can't find data blob for TaskSpec, i.e., entry "
38 blob.to_stringpiece(), task_spec);
49 DataBlobView blob = data_store_.GetData(file_name); local
50 return StringPiece(reinterpret_cast<const char *>(blob.data()),
51 blob.size());
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
blob_timeline.py 15 """BlobTimelineMetric reports timing information about blob storage.
18 * blob write times (blob_writes)
19 * blob read times (blob_reads)
71 name='blob-writes',
74 description='List of durations of blob writes.',
80 name='blob-writes',
83 none_value_reason='No blob write events found for this interaction.',
93 # Every blob has unique UUID. To get the total time for reading
94 # a blob, we add up the time of all events with the same blob UUID
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Library/
FdtLoadLib.h 23 @return EFI_SUCCESS Fdt Blob was successfully installed into the configuration table
26 @return EFI_OUT_OF_RESOURCES Fail to allocate memory to contain the blob
36 @param Filename Guid of the FDT blob to load from firmware volume
38 @return EFI_SUCCESS Fdt Blob was successfully installed into the configuration table
41 @return EFI_OUT_OF_RESOURCES Failed to allocate memory to contain the blob
  /external/ImageMagick/Magick++/lib/Magick++/
BlobRef.h 6 // Blob reference class
17 #include "Magick++/Blob.h"
37 Blob::Allocator allocator; // Memory allocation system in use
38 size_t length; // Blob length
39 void* data; // Blob data
  /external/wpa_supplicant_8/wpa_supplicant/
config_none.c 40 struct wpa_config_blob *blob; local
51 for (blob = config->blobs; blob; blob = blob->next) {
  /system/update_engine/payload_generator/
blob_file_writer.cc 23 off_t BlobFileWriter::StoreBlob(const brillo::Blob& blob) {
25 if (!utils::PWriteAll(blob_fd_, blob.data(), blob.size(), *blob_file_size_))
29 *blob_file_size_ += blob.size();
payload_signer.cc 54 // binary blob. Returns true on success, false otherwise.
55 bool ConvertSignatureToProtobufBlob(const vector<brillo::Blob>& signatures,
56 brillo::Blob* out_signature_blob) {
59 for (const brillo::Blob& signature : signatures) {
72 LOG(INFO) << "Signature blob size: " << out_signature_blob->size();
80 // |out_signatures_offset| with the expected offset for the new blob, and
85 const brillo::Blob& signature_blob,
86 const brillo::Blob& metadata_signature_blob,
87 brillo::Blob* out_payload,
105 brillo::Blob payload
    [all...]
block_mapping.cc 34 size_t HashValue(const brillo::Blob& blob) {
36 return hash_fn(string(blob.begin(), blob.end()));
43 BlockMapping::BlockId BlockMapping::AddBlock(const brillo::Blob& block_data) {
48 brillo::Blob blob(block_size_);
50 if (!utils::PReadAll(fd, blob.data(), block_size_, byte_offset, &bytes_read))
54 return AddBlock(fd, byte_offset, blob);
73 const brillo::Blob& block_data)
    [all...]
annotated_operation.h 38 // Writes |blob| to the end of |blob_file|. It sets the data_offset and
39 // data_length in AnnotatedOperation to match the offset and size of |blob|
41 bool SetOperationBlob(const brillo::Blob& blob, BlobFileWriter* blob_file);
  /external/skia/src/core/
SkTextBlobRunIterator.h 13 * Iterate through all of the text runs of the text blob. For example:
14 * for (SkTextBlobRunIterator it(blob); !it.done(); it.next()) {
20 SkTextBlobRunIterator(const SkTextBlob* blob);
  /system/nvram/messages/include/nvram/messages/
nvram_messages.h 22 #include <nvram/messages/blob.h>
67 Blob authorization_value;
87 Blob authorization_value;
100 Blob buffer;
101 Blob authorization_value;
109 Blob authorization_value;
113 Blob buffer;
119 Blob authorization_value;
127 Blob authorization_value;
182 // Encode |msg| to |blob|. Returns true if successful
    [all...]
  /external/skia/src/gpu/text/
GrTextBlobCache.cpp 18 for (const auto& blob : entry->fBlobs) {
19 fBlobList.remove(blob.get());
  /external/tpm2/
Context_spt_fp.h 9 void ComputeContextIntegrity(TPMS_CONTEXT *contextBlob, // IN: context blob
13 TPMS_CONTEXT *contextBlob, // IN: context blob
  /external/ImageMagick/www/Magick++/
Blob.html 11 <h1 align="center">Magick::Blob</h1>
12 <p>Blob provides the means to contain any opaque data. It is named after the term "Binary Large OBject" commonly used to describe unstructured data (such as encoded images) which is stored in a database. While the function of Blob is very simple (store a pointer and and size associated with allocated data), the Blob class provides some very useful capabilities. In particular, it is fully reference counted just like the Image class.</p>
13 <p>The Blob class supports value assignment while preserving any outstanding earlier versions of the object. Since assignment is via a pointer internally, Blob is efficient enough to be stored directly in an STL container or any other data structure which requires assignment. In particular, by storing a Blob in an <a href="http://www.sgi.com/tech/stl/AssociativeContainer.html">associative container</a> (such as STL's '<a href="http://www.sgi.com/tech/stl/Map.html"><i>map</i></a>') it is possible to create simple indexed in-memory "database" of Blobs.</p>
14 <p>Magick++ currently uses Blob to contain encoded images (e.g. JPEG) as well as ICC and IPTC profiles. Since Blob is a general-purpose class, it may be used for other purposes as well.</p>
15 <p style="margin-bottom: 0cm">The methods Blob provides are shown in the following table:</p
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/
QemuFwCfgAcpi.c 34 // blob. This is the ordering / search
36 UINTN Size; // The number of bytes in this blob.
37 UINT8 *Base; // Pointer to the blob data.
38 BOOLEAN HostsOnlyTableData; // TRUE iff the blob has been found to
41 } BLOB;
66 CONST BLOB *Blob;
68 Blob = UserStruct;
69 return AsciiStrCmp (StandaloneKey, (CONST CHAR8 *)Blob->File);
94 CONST BLOB *Blob1;
    [all...]
  /external/dtc/
fdtput.c 167 static int store_key_value(char **blob, const char *node_name,
173 node = fdt_path_offset(*blob, node_name);
179 err = fdt_setprop(*blob, node, property, buf, len);
181 *blob = realloc_property(*blob, node, property, len);
182 err = fdt_setprop(*blob, node, property, buf, len);
197 * @param blob FDT blob to write into
201 static int create_paths(char **blob, const char *in_path)
217 node = fdt_subnode_offset_namelen(*blob, offset, path
332 char *blob; local
    [all...]
  /frameworks/native/opengl/libs/EGL/
BlobCache.cpp 80 std::shared_ptr<Blob> dummyKey(new Blob(key, keySize, false));
87 std::shared_ptr<Blob> keyBlob(new Blob(key, keySize, true));
88 std::shared_ptr<Blob> valueBlob(new Blob(value, valueSize, true));
109 std::shared_ptr<Blob> valueBlob(new Blob(value, valueSize, true));
110 std::shared_ptr<Blob> oldValueBlob(index->getValue());
140 std::shared_ptr<Blob> dummyKey(new Blob(key, keySize, false))
    [all...]
  /bootable/recovery/minadbd/
README.md 7 receives a single blob of data, writes it to a fixed filename, and
  /cts/tests/tests/media/libaudiojni/
Blob.h 52 class Blob {
54 Blob(size_t size) :
61 Blob(void *data, size_t size) :
67 ~Blob() {
  /external/ImageMagick/Magick++/lib/
BlobRef.cpp 6 // Implementation of Blob
20 : allocator(Magick::Blob::NewAllocator),
35 if (allocator == Magick::Blob::NewAllocator)
40 else if (allocator == Magick::Blob::MallocAllocator)
  /external/dtc/tests/
test01.stderr 2 Warning: "linux,boot-cpu" property is deprecated in blob version 2 or higher
dumptrees.c 33 void *blob; member in struct:__anon17622
49 void *blob = trees[i].blob; local
55 size = fdt_totalsize(blob);
63 ret = write(fd, blob, size);
  /external/fonttools/Lib/fontTools/misc/
py23.py 53 def transcode(blob):
54 if not isinstance(blob, str):
55 blob = blob.decode('latin-1')
56 return blob

Completed in 865 milliseconds

12 3 4 5 6 7 8 91011>>