Home
last modified time | relevance | path

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

/external/openssh/
Dsshbuf-io.c34 sshbuf_load_fd(int fd, struct sshbuf **blobp) in sshbuf_load_fd() argument
42 *blobp = NULL; in sshbuf_load_fd()
71 *blobp = blob; in sshbuf_load_fd()
Dsshkey.c943 to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp, int force_plain, in to_blob() argument
952 if (blobp != NULL) in to_blob()
953 *blobp = NULL; in to_blob()
961 if (blobp != NULL) { in to_blob()
962 if ((*blobp = malloc(len)) == NULL) { in to_blob()
966 memcpy(*blobp, sshbuf_ptr(b), len); in to_blob()
975 sshkey_to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp) in sshkey_to_blob() argument
977 return to_blob(key, blobp, lenp, 0, SSHKEY_SERIALIZE_DEFAULT); in sshkey_to_blob()
981 sshkey_plain_to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp) in sshkey_plain_to_blob() argument
983 return to_blob(key, blobp, lenp, 1, SSHKEY_SERIALIZE_DEFAULT); in sshkey_plain_to_blob()
Dssh-keygen.c2169 hash_to_blob(const char *cp, u_char **blobp, size_t *lenp, in hash_to_blob() argument
2198 *blobp = xmalloc(*lenp); in hash_to_blob()
2199 memcpy(*blobp, sshbuf_ptr(b), *lenp); in hash_to_blob()
/external/curl/lib/
Dsetopt.h26 CURLcode Curl_setblobopt(struct curl_blob **blobp,
Dsetopt.c80 CURLcode Curl_setblobopt(struct curl_blob **blobp, in Curl_setblobopt() argument
86 Curl_safefree(*blobp); in Curl_setblobopt()
104 *blobp = nblob; in Curl_setblobopt()