Lines Matching defs:size
18 keyring_file_check_path(const char *path, int *size)
40 if (size != NULL) {
41 *size = st.st_size;
93 int rc, errsv, size = 0;
95 rc = keyring_file_check_path(kkey->path, &size);
100 if (size > len) {
101 SPDK_ERRLOG("Invalid key '%s' size: %d > %d\n", spdk_key_get_name(key), size, len);
113 rc = (int)fread(buf, 1, size, file);
114 if (rc != size) {
157 opts.size = SPDK_SIZEOF(&opts, ctx);