Home
last modified time | relevance | path

Searched refs:blobp (Results 1 – 5 of 5) sorted by relevance

/external/openssh/
Dkey.c109 key_to_blob(const Key *key, u_char **blobp, u_int *lenp) in key_to_blob() argument
115 if (blobp != NULL) in key_to_blob()
116 *blobp = NULL; in key_to_blob()
126 if (blobp != NULL) in key_to_blob()
127 *blobp = blob; in key_to_blob()
Dsshkey.c829 to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp, int force_plain) in to_blob() argument
837 if (blobp != NULL) in to_blob()
838 *blobp = NULL; in to_blob()
846 if (blobp != NULL) { in to_blob()
847 if ((*blobp = malloc(len)) == NULL) { in to_blob()
851 memcpy(*blobp, sshbuf_ptr(b), len); in to_blob()
860 sshkey_to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp) in sshkey_to_blob() argument
862 return to_blob(key, blobp, lenp, 0); in sshkey_to_blob()
866 sshkey_plain_to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp) in sshkey_plain_to_blob() argument
868 return to_blob(key, blobp, lenp, 1); in sshkey_plain_to_blob()
/external/u-boot/tools/
Dfit_common.c41 void **blobp, struct stat *sbuf, bool delete_on_error) in mmap_fdt() argument
96 *blobp = ptr; in mmap_fdt()
Dfit_common.h30 void **blobp, struct stat *sbuf, bool delete_on_error);
/external/u-boot/cmd/
Dfdt.c29 static int fdt_valid(struct fdt_header **blobp);
700 static int fdt_valid(struct fdt_header **blobp) in fdt_valid() argument
702 const void *blob = *blobp; in fdt_valid()
734 *blobp = NULL; in fdt_valid()