Searched refs:json (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/cmd/dtrace/test/tst/common/json/
H A Dtst.usdt.d22 * primary motivating use case for the json() subroutine: filtering
39 /json(this->j, "finished") == NULL && json(this->j, "action") != "ignore"/
41 this->index = strtoll(json(this->j, "index"));
42 this->size = json(this->j, "sizes[2]");
43 this->odd = json(this->j, "facts.odd");
44 this->even = json(this->j, "facts.even");
50 /json(this->j, "finished") != NULL/
H A Dtst.usdt.c46 char *odd, *even, *json, *action; local
53 asprintf(&json, FMT, size, idx, odd, even, action);
54 BUNYAN_FAKE_LOG_DEBUG(json);
55 free(json);
H A Dtst.strsize.d18 * json() run time must be bounded above by strsize. This test makes strsize
30 out = json(in, "a");
34 out = json(in, "a");
38 out = json(in, "b");
42 out = json(in, "b");
H A Dtst.general.d17 * General functional tests of JSON parser for json().
32 out = json(in, ss); \
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/
H A DMakefile82 json/tst.usdt.o: json/usdt.h
84 json/usdt.h: json/usdt.d
85 $(DTRACE) -h -s json/usdt.d -o json/usdt.h
87 CLOBBERFILES += json/usdt.h
89 json/usdt.o: json/usdt.d json/ts
[all...]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/privs/
H A Dtst.func_access.ksh68 BEGIN { j = "{\"/sbin/init\":\"uh oh\"}"; trace(json(j, `initname)); }
69 BEGIN { trace(json(`initname, "x")); }
H A Dtst.kpriv.ksh64 CANTREAD2(json, "doogle")
65 CANTREAD2ARG1(json, "doogle")
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.subr.d104 STRFUNC(json("{\"systemtap\": false}", "systemtap"))
/illumos-gate/usr/src/uts/common/dtrace/
H A Ddtrace.c3588 * specification (http://json.org/). Briefly:
3643 dtrace_json(uint64_t size, uintptr_t json, char *elemlist, int nelems, argument
3659 for (cur = json; cur < json + size; cur++) {
4716 uintptr_t json = tupregs[0].dttk_value; local
4717 size_t jsonlen = dtrace_strlen((char *)json, size);
4727 if (!dtrace_canload(json, jsonlen + 1, mstate, vstate) ||
4767 if ((regs[rd] = (uintptr_t)dtrace_json(size, json, elemlist,

Completed in 102 milliseconds