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->fi_name = args[1] ? (
30 this->mount = this->vp != NULL ?
31 this->vp->v_mount : NULL; /* ptr to vfs we are in */
32 this->fi_fs = this->mount != NULL ?
33 stringof(this->mount->mnt_stat.f_fstypename) : "";
34 this->fi_mount = this->mount != NULL ?
35 stringof(this->mount->mnt_stat.f_mntonname) : "";
36 this->d_name = args[0]->v_cache_dd != NULL ?
53 this->nameDEPTH = "";
58 $PROBE /this->vp == 0 || this->fi_fs == 0 ||
59 this->fi_fs == "devfs" || this->fi_fs == "" ||
60 this->fi_name == ""/ /* probe ID $(( $ID + 1 )) */
63 this->ncp = 0;
68 $PROBE /this->ncp/ /* probe ID $(( $ID + 2 )) (depth 1) */
71 this->dvp = this->ncp->nc_dvp != NULL ?
72 this->ncp->nc_dvp->v_cache_dst.tqh_first : 0;
73 this->name1 = this->dvp != 0 ? (
74 this->dvp->nc_name != 0 ? stringof(this->dvp->nc_name) : ""
78 $PROBE /this->name1 == 0 || this->fi_fs == 0 ||
79 this->fi_fs == "devfs" || this->fi_fs == "" ||
80 this->name1 == "/" || this->name1 == ""/ /* probe ID $(( $ID + 3 )) */
83 this->dvp = 0;
104 $PROBE /this->dvp/ /* probe ID IDNUM (depth DEPTH) */
107 this->dvp = this->dvp->nc_dvp != NULL ?
108 this->dvp->nc_dvp->v_cache_dst.tqh_first : 0;
109 this->nameDEPTH = this->dvp != 0 ? (
110 this->dvp->nc_name != 0 ? stringof(this->dvp->nc_name) : ""
117 $PROBE /this->dvp/ /* probe ID $(( $ID + $MAX_DEPTH + 3 )) */
120 this->dvp = this->dvp->nc_dvp != NULL ?
121 this->dvp->nc_dvp->v_cache_dst.tqh_first : 0;
122 this->name$(( $MAX_DEPTH + 1 )) = this->dvp != 0 ? (
123 this->dvp->nc_dvp != NULL ? "..." : ""
133 $PROBE /this->fi_mount != 0/ /* probe ID $(( $ID + $MAX_DEPTH + 4 )) */
141 this->path = this->fi_mount;
142 this->path = strjoin(this->path, this->fi_mount != 0 ? (
143 this->fi_mount == "/" ? "" : "/"
159 this->path = strjoin(this->path,
160 \ strjoin(this->nameN, this->nameN != "" ? "/" : ""));
165 this->path = strjoin(this->path, strjoin(this->name =
166 (this->d_name != 0 ? this->d_name : ""),
167 this->name != "" ? "/" : ""));
170 this->path = strjoin(this->path,
171 this->name = (this->fi_name != 0 ? this->fi_name : ""));
179 EVENT_TEST="this->fi_mount != 0"
188 printf("%s", this->path);