Home
last modified time | relevance | path

Searched refs:this (Results 51 – 75 of 3631) sorted by relevance

12345678910>>...146

/illumos-gate/usr/src/cmd/dtrace/demo/ip/
H A Dtcprst.d69 this->mp = (mblk_t *)arg0;
70 this->mp = (this->mp->b_datap->db_type == M_CTL?
71 this->mp->b_cont : this->mp);
76 this->iph_length =
80 this->tcph_length =
88 this->i_fad = (in6_addr_t *)&this->connp->connua_v6addr.connua_faddr;
89 this->i_lad = (in6_addr_t *)&this->connp->connua_v6addr.connua_laddr;
275 num[this->conn_id] = 0;
276 first[this->conn_id] = 0;
282 iss[this->conn_id] = 0;
[all …]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Dtst.inet_ntoa6.d39 this->buf6a = alloca(sizeof (struct in6_addr));
40 this->buf6b = alloca(sizeof (struct in6_addr));
41 this->buf6c = alloca(sizeof (struct in6_addr));
42 this->buf6d = alloca(sizeof (struct in6_addr));
46 ip6a = this->buf6a;
47 ip6b = this->buf6b;
48 ip6c = this->buf6c;
49 ip6d = this->buf6d;
50 ip6e = this->buf6e;
51 ip6f = this->buf6f;
[all …]
H A Dtst.strtok.d31 this->str = ",,,Carrots,,Barley,Oatmeal,,,Beans,";
35 /(this->field = strtok(this->str, ",")) == NULL/
42 printf("%s\n", this->field);
46 /(this->field = strtok(NULL, ",")) == NULL/
53 printf("%s\n", this->field);
57 /(this->field = strtok(NULL, ",")) == NULL/
64 printf("%s\n", this->field);
68 /(this->field = strtok(NULL, ",")) == NULL/
75 printf("%s\n", this->field);
81 printf("unexpected field: %s\n", this->field);
[all …]
H A Dtst.inet_ntoa.d36 this->buf4a = alloca(sizeof (ipaddr_t));
37 this->buf4b = alloca(sizeof (ipaddr_t));
38 this->buf4c = alloca(sizeof (ipaddr_t));
39 this->buf4d = alloca(sizeof (ipaddr_t));
40 ip4a = this->buf4a;
41 ip4b = this->buf4b;
42 ip4c = this->buf4c;
43 ip4d = this->buf4d;
H A Dtst.system.d32 this->a = 9;
33 this->b = -2;
35 system("echo %s %d %d", "foo", this->a, this->b);
37 system("echo %d", ++this->a);
39 system("echo %d", ++this->a);
41 system("echo %d", ++this->a);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/print/
H A Dtst.struct.d45 this->s = (foo_t *)alloca(sizeof (foo_t));
47 this->s->a = 1;
48 this->s->b = (void *)2;
49 this->s->c.alpha = 3;
50 this->s->c.beta = 4;
51 this->s->d = 5;
52 this->s->e = 6;
53 this->s->f = (void *)7;
54 this->s->g = (void *)8;
56 print(*this->s);
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dev_connects.c152 evConn *this = id.opaque; in evCancelConn() local
174 if (this->prev != NULL) in evCancelConn()
175 this->prev->next = this->next; in evCancelConn()
177 ctx->conns = this->next; in evCancelConn()
178 if (this->next != NULL) in evCancelConn()
179 this->next->prev = this->prev; in evCancelConn()
189 if (acc->conn == this) { in evCancelConn()
197 FREE(this); in evCancelConn()
202 evConn *this = id.opaque; in evHold() local
224 ret = evSelectFD(opaqueCtx, this->fd, EV_READ, listener, this, in evUnhold()
[all …]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/assocs/
H A Dtst.diffprofile.d39 this int x;
40 this char c;
44 this->x = 123;
45 this->c = 'D';
46 printf("The value of x is %d\n", this->x);
51 this->x = 235;
52 printf("The value of x is %d\n", this->x);
57 this->x = 456;
58 printf("The value of x is %d\n", this->x);
H A Dtst.cpyarray.d39 this int x;
48 this->x = a["abc", 123]++;
49 printf("The value of x is %d\n", this->x);
54 this->x = a["abc", 123]++;
55 printf("The value of x is %d\n", this->x);
60 this->x = a["abc", 123]++;
61 printf("The value of x is %d\n", this->x);
/illumos-gate/usr/src/lib/libresolv2/common/irs/
H A Dirp_ng.c67 irs_irp_ng(struct irs_acc *this) { in irs_irp_ng() argument
83 pvt->girpdata = this->private; in irs_irp_ng()
104 ng_close(struct irs_ng *this) { in ng_close() argument
105 struct pvt *pvt = (struct pvt *)this->private; in ng_close()
107 ng_minimize(this); in ng_close()
110 memput(this, sizeof *this); in ng_close()
124 struct pvt *pvt = (struct pvt *)this->private; in ng_rewind()
157 struct pvt *pvt = (struct pvt *)this->private; in ng_next()
196 ng_test(struct irs_ng *this, const char *name, in ng_test() argument
199 struct pvt *pvt = (struct pvt *)this->private; in ng_test()
[all …]
H A Dlcl_pr.c105 irs_lcl_pr(struct irs_acc *this) { in irs_lcl_pr() argument
114 memput(pr, sizeof *this); in irs_lcl_pr()
134 pr_close(struct irs_pr *this) { in pr_close() argument
142 memput(this, sizeof *this); in pr_close()
151 pr_rewind(this); in pr_byname()
152 while ((p = pr_next(this))) { in pr_byname()
167 pr_rewind(this); in pr_bynumber()
168 while ((p = pr_next(this))) in pr_bynumber()
175 pr_rewind(struct irs_pr *this) { in pr_rewind() argument
192 pr_next(struct irs_pr *this) { in pr_next() argument
[all …]
H A Dgen_ng.c62 irs_gen_ng(struct irs_acc *this) { in irs_gen_ng() argument
92 ng_close(struct irs_ng *this) { in ng_close() argument
93 struct pvt *pvt = (struct pvt *)this->private; in ng_close()
95 ng_minimize(this); in ng_close()
99 memput(this, sizeof *this); in ng_close()
106 struct pvt *pvt = (struct pvt *)this->private; in ng_next()
125 ng_test(struct irs_ng *this, const char *name, in ng_test() argument
128 struct pvt *pvt = (struct pvt *)this->private; in ng_test()
145 struct pvt *pvt = (struct pvt *)this->private; in ng_rewind()
159 ng_minimize(struct irs_ng *this) { in ng_minimize() argument
[all …]
H A Dirp_pr.c72 irs_irp_pr(struct irs_acc *this) { in irs_irp_pr() argument
88 pvt->girpdata = this->private; in irs_irp_pr()
108 pr_close(struct irs_pr *this) { in pr_close() argument
109 struct pvt *pvt = (struct pvt *)this->private; in pr_close()
111 pr_minimize(this); in pr_close()
116 memput(this, sizeof *this); in pr_close()
126 struct pvt *pvt = (struct pvt *)this->private; in pr_byname()
174 pr_bynumber(struct irs_pr *this, int proto) { in pr_bynumber() argument
223 pr_rewind(struct irs_pr *this) { in pr_rewind() argument
252 pr_next(struct irs_pr *this) { in pr_next() argument
[all …]
H A Dirp_sv.c76 irs_irp_sv(struct irs_acc *this) { in irs_irp_sv() argument
92 pvt->girpdata = this->private; in irs_irp_sv()
113 sv_close(struct irs_sv *this) { in sv_close() argument
114 struct pvt *pvt = (struct pvt *)this->private; in sv_close()
116 sv_minimize(this); in sv_close()
121 memput(this, sizeof *this); in sv_close()
130 sv_next(struct irs_sv *this) { in sv_next() argument
131 struct pvt *pvt = (struct pvt *)this->private; in sv_next()
176 struct pvt *pvt = (struct pvt *)this->private; in sv_byname()
277 sv_rewind(struct irs_sv *this) { in sv_rewind() argument
[all …]
H A Dirp_nw.c80 irs_irp_nw(struct irs_acc *this) { in irs_irp_nw() argument
96 pvt->girpdata = this->private; in irs_irp_nw()
116 nw_close(struct irs_nw *this) { in nw_close() argument
117 struct pvt *pvt = (struct pvt *)this->private; in nw_close()
119 nw_minimize(this); in nw_close()
124 memput(this, sizeof *this); in nw_close()
135 struct pvt *pvt = (struct pvt *)this->private; in nw_byaddr()
184 struct pvt *pvt = (struct pvt *)this->private; in nw_byname()
232 nw_rewind(struct irs_nw *this) { in nw_rewind() argument
261 nw_next(struct irs_nw *this) { in nw_next() argument
[all …]
H A Ddns_ho.c178 UNUSED(this); in irs_dns_ho()
209 ho_close(struct irs_ho *this) { in ho_close() argument
212 ho_minimize(this); in ho_close()
216 memput(this, sizeof *this); in ho_close()
224 if (init(this) == -1) in ho_byname()
247 if (init(this) == -1) in ho_byname2()
337 if (init(this) == -1) in ho_byaddr()
505 UNUSED(this); in ho_next()
513 UNUSED(this); in ho_rewind()
559 if (init(this) == -1) in ho_addrinfo()
[all …]
/illumos-gate/usr/src/cmd/smbsrv/testoplock/
H A Dtol_all.d78 this->state = *(uint32_t *)copyin(self->statep, 4);
79 printf(" entry state=0x%x\n", this->state);
84 this->sr = (userland pid`smb_request_t *)self->sr;
86 printf(" return state=0x%x\n", this->state);
88 print(this->sr->arg.open);
93 this->node = (userland pid`smb_node_t *)arg0;
94 this->ofile = (userland pid`smb_ofile_t *)arg1;
96 print(this->node->n_oplock);
98 print(this->ofile->f_oplock);
103 this->ofile = (userland pid`smb_ofile_t *)arg0;
[all …]
/illumos-gate/usr/src/lib/librstp/common/
H A Dstpm.h91 STP_stpm_enable (STPM_T* this, UID_STP_MODE_T admin_state);
94 STP_stpm_delete (STPM_T* this);
97 STP_stpm_start (STPM_T* this);
100 STP_stpm_stop (STPM_T* this);
103 STP_stpm_update (STPM_T* this);
106 STP_compute_bridge_id (STPM_T* this);
112 STP_stpm_update_after_bridge_management (STPM_T* this);
115 STP_stpm_check_bridge_priority (STPM_T* this);
118 STP_stpm_get_port_name_by_id (STPM_T* this, PORT_ID port_id);
H A Dstatmch.h62 this, \
64 abstr->next = this->machines; \
65 this->machines = abstr; \
66 this->WHAT = abstr; \
77 STP_state_mach_delete (STATE_MACH_T* this);
80 STP_check_condition (STATE_MACH_T* this);
83 STP_change_state (STATE_MACH_T* this);
86 STP_hop_2_state (STATE_MACH_T* this, unsigned int new_state);
/illumos-gate/usr/src/common/ficl/softcore/
H A Dforml.fr22 : set-name { c-addr u 2:this -- }
23 u this --> .length --> set
24 c-addr this --> .name u move
31 : test ." this is a test" cr ;
50 : on { led# 2:this -- }
51 this --> .state --> get
53 this --> .state --> set
56 : off { led# 2:this -- }
57 this --> .state --> get
59 this --> .state --> set
[all …]
/illumos-gate/usr/src/cmd/fm/dicts/
H A DGMCA.po7 # The contents of this file are subject to the terms of the
39 msgstr "Performance of this system may be affected."
55 msgstr "Performance of this system may be affected."
71 msgstr "Performance of this system may be affected."
87 msgstr "Performance of this system may be affected."
103 msgstr "Performance of this system may be affected."
119 msgstr "Performance of this system may be affected."
135 msgstr "Performance of this system may be affected."
151 msgstr "Performance of this system may be affected."
167 msgstr "Performance of this system may be affected."
[all …]
H A DAMD.po7 # The contents of this file are subject to the terms of the
41 msgstr "No repair action is recommended at this time."
103 msgstr "Performance of this system may be affected."
119 msgstr "Performance of this system may be affected."
135 msgstr "Performance of this system may be affected."
151 msgstr "Performance of this system may be affected."
167 msgstr "Performance of this system may be affected."
183 msgstr "Performance of this system may be affected."
199 msgstr "Performance of this system may be affected."
215 msgstr "Performance of this system may be affected."
[all …]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/struct/
H A Dtst.clauselocal.d35 this struct foo bar;
40 this->bar.x = 1;
41 this->bar.y = ',';
42 this->bar.z = 1234;
47 printf("Die %s%c %s.\n", this->bar.x == 1 ? "SystemTap" : "DTrace",
48 this->bar.y, this->bar.z == 1234 ? "Die" : "The");
/illumos-gate/usr/src/test/zfs-tests/tests/perf/scripts/
H A Dprefetch_io.d59 this->zio = args[0];
60 this->hdr = (arc_buf_hdr_t *)this->zio->io_private;
61 @s["demand"] = sum(this->hdr->b_flags & ARC_FLAGS_PREFETCH ? 0 : 1);
62 @s["logical"] = sum(HDR_GET_LSIZE(this->hdr));
63 @s["physical"] = sum(HDR_GET_PSIZE(this->hdr));
68 this->new_prefetch_ios =
72 this->new_prefetch_ios - prefetch_ios);
75 prefetch_ios = this->new_prefetch_ios;
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dgprof.flat.blurb4 time program used by this function.
7 seconds for by this function and those listed above it.
9 self the number of seconds accounted for by this
10 seconds function alone. This is the major sort for this
13 calls the number of times this function was invoked, if
14 this function is profiled, else blank.
16 self the average number of milliseconds spent in this
17 ms/call function per call, if this function is profiled,
20 total the average number of milliseconds spent in this
21 ms/call function and its descendents per call, if this
[all …]

12345678910>>...146