Lines Matching defs:targetbuf
72 uint8_t *targetbuf, int *length);
880 uint8_t *filedata, *targetbuf;
960 targetbuf = malloc(PATH_MAX+1, M_UDFTEMP, M_WAITOK);
961 error = udf_do_readlink(udf_node, filesize, targetbuf, &length);
964 KASSERT(length == strlen(targetbuf));
966 free(targetbuf, M_UDFTEMP);
1756 uint8_t *targetbuf, int *length)
1768 memset(targetbuf, 0, PATH_MAX);
1785 targetpos = targetbuf;
1896 uint8_t *targetbuf;
1910 targetbuf = malloc(PATH_MAX+1, M_UDFTEMP, M_WAITOK);
1912 error = udf_do_readlink(udf_node, filesize, targetbuf, &length);
1916 uiomove(targetbuf, length, uio);
1918 free(targetbuf, M_UDFTEMP);