Lines Matching defs:blob
230 char blob[] = "This is a blob of thirty-seven bytes";
246 disk_cache_compute_key(cache, blob, sizeof(blob), blob_key);
254 disk_cache_put(cache, blob_key, blob, sizeof(blob), NULL);
260 EXPECT_STREQ(blob, result) << "disk_cache_get of existing item (pointer)";
261 EXPECT_EQ(size, sizeof(blob)) << "disk_cache_get of existing item (size)";
304 * directory as the original blob first written to the cache.
350 disk_cache_put(cache, blob_key, blob, sizeof(blob), NULL);
467 char blob[] = "This is a blob of thirty-seven bytes";
483 disk_cache_compute_key(cache1, blob, sizeof(blob), blob_key);
495 disk_cache_put(cache1, blob_key, blob, sizeof(blob), NULL);
501 EXPECT_STREQ(blob, result) << "disk_cache_get(cache2) of existing item (pointer)";
502 EXPECT_EQ(size, sizeof(blob)) << "disk_cache_get of(cache2) existing item (size)";