Lines Matching defs:path
192 static av_cold int libssh_connect(URLContext *h, const char *url, char *path, size_t path_size)
204 path, path_size,
207 if (!(*path))
208 av_strlcpy(path, "/", path_size);
233 char path[MAX_URL_SIZE];
235 if ((ret = libssh_connect(h, url, path, sizeof(path))) < 0)
238 if ((ret = libssh_open_file(libssh, flags, path)) < 0)
317 char path[MAX_URL_SIZE];
319 if ((ret = libssh_connect(h, h->filename, path, sizeof(path))) < 0)
322 if (!(libssh->dir = sftp_opendir(libssh->sftp, path))) {
400 char path[MAX_URL_SIZE];
402 if ((ret = libssh_connect(h, h->filename, path, sizeof(path))) < 0)
405 if (!(attr = sftp_stat(libssh->sftp, path))) {
411 if (sftp_rmdir(libssh->sftp, path) < 0) {
416 if (sftp_unlink(libssh->sftp, path) < 0) {
481 {"private_key", "set path to private key", OFFSET(priv_key), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D|E },