Lines Matching defs:device

61 	mount_id			device;
85 struct head *FindHead(mount_id device, vnode_id node);
86 match_type Match(int32 state, mount_id device, vnode_id parent,
140 void GotFile(mount_id device, vnode_id node);
145 void _MatchFile(mount_id device, vnode_id parent, const char *name);
247 device = -1;
316 parse_ref(const char *string, mount_id &device, vnode_id &node, char **_end = NULL)
320 device = strtol(string, &end, 0);
321 if (end == NULL || device == 0 || end[0] != ':')
402 mount_id device;
407 if (parse_ref(line, device, node, &line)) {
415 TRACE(("c %ld:%lld:%s %s %ld\n", device, node, fileName, name, confidence));
418 head->device = device;
506 if (vfs_entry_ref_to_vnode(head->device, head->parent, head->name, &vnode) == B_OK) {
507 vfs_vnode_to_node_ref(vnode, &head->device, &head->node);
509 TRACE(("prefetch: %ld:%lld:%s\n", head->device, head->parent, head->name));
510 cache_prefetch(head->device, head->node, 0, ~0UL);
524 Rule::FindHead(mount_id device, vnode_id node)
530 if (head->node == node && head->device == device)
546 dprintf(" %ld:%lld:\"%s\", ", head->device, head->parent, head->name);
628 RuleMatcher::GotFile(mount_id device, vnode_id node)
648 struct head *head = state->rule->FindHead(device, node);
683 node_opened(struct vnode *vnode, int32 fdType, dev_t device, vnode_id parent,
686 if (device < gBootDevice) {
688 // ToDo: if we can ever move the boot device on the fly, this will break
700 //dprintf("opened: %ld:%lld:%lld:%s (%s)\n", device, parent, node, name, thread_get_current_thread()->name);
702 matcher.GotFile(device, node);