Lines Matching full:path
66 * RAND_query_egd_bytes(path, buf, bytes)
68 * at path and will write them to buf (if supplied) or will directly feed
82 * RAND_egd_bytes(path, bytes) will query "bytes" bytes and have them
93 * RAND_egd(path) will query 255 bytes and use the bytes retreived to seed
99 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes)
103 int RAND_egd(const char *path)
108 int RAND_egd_bytes(const char *path,int bytes)
126 char sun_path[108]; /* path name (gag) */
136 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes)
147 if (strlen(path) >= sizeof(addr.sun_path))
149 BUF_strlcpy(addr.sun_path,path,sizeof addr.sun_path);
150 len = offsetof(struct sockaddr_un, sun_path) + strlen(path);
284 int RAND_egd_bytes(const char *path, int bytes)
288 num = RAND_query_egd_bytes(path, NULL, bytes);
297 int RAND_egd(const char *path)
299 return (RAND_egd_bytes(path, 255));