Lines Matching full:this

23 	this->vp = (struct vnode *)arg0;
24 this->ncp = this->vp != NULL ?
25 this->vp->v_cache_dst.tqh_first : 0;
26 this->target = args[1] ? args[1]->a_target : "";
27 this->fi_name = args[1] ? (
31 this->mount = this->vp != NULL ?
32 this->vp->v_mount : NULL; /* ptr to vfs we are in */
33 this->fi_fs = this->mount != NULL ?
34 stringof(this->mount->mnt_stat.f_fstypename) : "";
35 this->fi_mount = this->mount != NULL ?
36 stringof(this->mount->mnt_stat.f_mntonname) : "";
37 this->d_name = args[0]->v_cache_dd != NULL ?
54 this->nameDEPTH = "";
59 $PROBE /this->vp == 0 || this->fi_fs == 0 ||
60 this->fi_fs == "devfs" || this->fi_fs == "" ||
61 this->fi_name == ""/ /* probe ID $(( $ID + 1 )) */
64 this->ncp = 0;
69 $PROBE /this->ncp/ /* probe ID $(( $ID + 2 )) (depth 1) */
72 this->dvp = this->ncp->nc_dvp != NULL ?
73 this->ncp->nc_dvp->v_cache_dst.tqh_first : 0;
74 this->name1 = this->dvp != 0 ? (
75 this->dvp->nc_name != 0 ? stringof(this->dvp->nc_name) : ""
79 $PROBE /this->name1 == 0 || this->fi_fs == 0 ||
80 this->fi_fs == "devfs" || this->fi_fs == "" ||
81 this->name1 == "/" || this->name1 == ""/ /* probe ID $(( $ID + 3 )) */
84 this->dvp = 0;
105 $PROBE /this->dvp/ /* probe ID IDNUM (depth DEPTH) */
108 this->dvp = this->dvp->nc_dvp != NULL ?
109 this->dvp->nc_dvp->v_cache_dst.tqh_first : 0;
110 this->nameDEPTH = this->dvp != 0 ? (
111 this->dvp->nc_name != 0 ? stringof(this->dvp->nc_name) : ""
118 $PROBE /this->dvp/ /* probe ID $(( $ID + $MAX_DEPTH + 3 )) */
121 this->dvp = this->dvp->nc_dvp != NULL ?
122 this->dvp->nc_dvp->v_cache_dst.tqh_first : 0;
123 this->name$(( $MAX_DEPTH + 1 )) = this->dvp != 0 ? (
124 this->dvp->nc_dvp != NULL ? "..." : ""
134 $PROBE /this->fi_mount != 0/ /* probe ID $(( $ID + $MAX_DEPTH + 4 )) */
142 this->path = this->fi_mount;
143 this->path = strjoin(this->path, this->fi_mount != 0 ? (
144 this->fi_mount == "/" ? "" : "/"
160 this->path = strjoin(this->path,
161 \ strjoin(this->nameN, this->nameN != "" ? "/" : ""));
166 this->path = strjoin(this->path, strjoin(this->name =
167 (this->d_name != 0 ? this->d_name : ""),
168 this->name != "" ? "/" : ""));
171 this->path = strjoin(this->path,
172 this->name = (this->fi_name != 0 ? this->fi_name : ""));
180 EVENT_TEST="this->fi_mount != 0"
189 printf("%s -> %s", this->path, this->target);