Lines Matching defs:fill
1382 ntfs_fuse_fill_context_t *fill;
1412 fill = (ntfs_fuse_fill_context_t*)
1414 if (!fill)
1417 fill->first = fill->last
1419 fill->filled = FALSE;
1420 fill->ino = ino;
1421 fill->off = 0;
1423 fill->fh = fi->fh;
1426 fi->fh = (long)fill;
1445 ntfs_fuse_fill_context_t *fill;
1450 fill = (ntfs_fuse_fill_context_t*)(long)fi->fh;
1451 if (fill && (fill->ino == ino)) {
1453 current = fill->first;
1456 free(fill->first);
1457 fill->first = current;
1460 if (fill->fh) {
1468 ufi.fh = fill->fh;
1478 fill->ino = 0;
1479 free(fill);
1493 ntfs_fuse_fill_context_t *fill;
1498 fill = (ntfs_fuse_fill_context_t*)(long)fi->fh;
1499 if (fill && (fill->ino == ino)) {
1500 if (fill->filled && !off) {
1502 current = fill->first;
1505 free(fill->first);
1506 fill->first = current;
1508 fill->filled = FALSE;
1510 if (!fill->filled) {
1519 fill->req = req;
1520 fill->first = first;
1521 fill->last = first;
1522 fill->off = 0;
1534 ufi.fh = fill->fh;
1536 readdir, &pos, fill,
1543 if (ntfs_readdir(ni, &pos, fill,
1548 fill->filled = TRUE;
1565 fill->first = first->next;
1567 first = fill->first;
1575 current = fill->first;
1578 free(fill->first);
1579 fill->first = current;
1585 fill->first = current->next;