Home
last modified time | relevance | path

Searched refs:rsrc_name (Results 1 – 4 of 4) sorted by relevance

/third_party/libsnd/src/
Dmacos.c33 { static char rsrc_name [1024] ; in macos_guess_file_type() local
36 snprintf (rsrc_name, sizeof (rsrc_name), "%s/rsrc", filename) ; in macos_guess_file_type()
39 if (stat (rsrc_name, &statbuf) != 0) in macos_guess_file_type()
/third_party/harfbuzz/src/
Dhb-blob.cc531 char *rsrc_name = (char *) malloc (len); in _open_resource_fork() local
532 if (unlikely (!rsrc_name)) return -1; in _open_resource_fork()
534 strncpy (rsrc_name, file_name, name_len); in _open_resource_fork()
535 strncpy (rsrc_name + name_len, _PATH_RSRCFORKSPEC, in _open_resource_fork()
538 int fd = open (rsrc_name, O_RDONLY | O_BINARY, 0); in _open_resource_fork()
539 free (rsrc_name); in _open_resource_fork()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-blob.cc570 char *rsrc_name = (char *) hb_malloc (len); in _open_resource_fork() local
571 if (unlikely (!rsrc_name)) return -1; in _open_resource_fork()
573 strncpy (rsrc_name, file_name, name_len); in _open_resource_fork()
574 strncpy (rsrc_name + name_len, _PATH_RSRCFORKSPEC, in _open_resource_fork()
577 int fd = open (rsrc_name, O_RDONLY | O_BINARY, 0); in _open_resource_fork()
578 hb_free (rsrc_name); in _open_resource_fork()
/third_party/libsnd/tests/
Dutils.tpl765 { char rsrc_name [512], *fname ;
776 snprintf (rsrc_name, sizeof (rsrc_name), "%s", filename) ;
778 if ((fname = strrchr (rsrc_name, '/')) != NULL)
780 else if ((fname = strrchr (rsrc_name, '\\')) != NULL)
783 fname = rsrc_name ;
789 unlink (rsrc_name) ;