Home
last modified time | relevance | path

Searched refs:js_s (Results 1 – 8 of 8) sorted by relevance

/dports/security/suricata/suricata-6.0.4/src/
H A Dutil-profiling-rulegroups.c152 char *js_s = json_dumps(js, in DoDumpJSON() local
155 if (likely(js_s != NULL)) { in DoDumpJSON()
156 fprintf(fp, "%s", js_s); in DoDumpJSON()
157 free(js_s); in DoDumpJSON()
H A Dutil-profiling-rules.c343 char *js_s = json_dumps(js, in DumpJson() local
347 if (unlikely(js_s == NULL)) in DumpJson()
349 fprintf(fp, "%s", js_s); in DumpJson()
350 free(js_s); in DumpJson()
H A Dutil-debug.c251 char *js_s = json_dumps(js, in SCLogMessageJSON() local
254 snprintf(buffer, buffer_size, "%s", js_s); in SCLogMessageJSON()
255 free(js_s); in SCLogMessageJSON()
H A Ddetect-engine-build.c920 char *js_s = json_dumps(js, in RulesDumpGrouping() local
922 if (unlikely(js_s == NULL)) { in RulesDumpGrouping()
930 fprintf(fp, "%s\n", js_s); in RulesDumpGrouping()
931 free(js_s); in RulesDumpGrouping()
/dports/editors/cudatext/CudaText-1.151.0/app/cudatext.app/Contents/Resources/py/
H A Dcudatext.py1346 js_s = ct.ed_get_prop(self.h, PROP_TAG, '')
1348 if not js_s:
1351 js = json.loads(js_s)
1359 js_s = ct.ed_get_prop(self.h, PROP_TAG, '')
1360 js_s = js_s if js_s else '{}'
1362 js = json.loads(js_s)
1364 js_s = json.dumps(js)
1365 return ct.ed_set_prop(self.h, PROP_TAG, js_s)
/dports/editors/cudatext/CudaText-1.151.0/app/py/
H A Dcudatext.py1346 js_s = ct.ed_get_prop(self.h, PROP_TAG, '')
1348 if not js_s:
1351 js = json.loads(js_s)
1359 js_s = ct.ed_get_prop(self.h, PROP_TAG, '')
1360 js_s = js_s if js_s else '{}'
1362 js = json.loads(js_s)
1364 js_s = json.dumps(js)
1365 return ct.ed_set_prop(self.h, PROP_TAG, js_s)
/dports/sysutils/triton/Triton-0.8.1/src/libtriton/includes/triton/
H A Dx86Semantics.hpp713 void js_s(triton::arch::Instruction& inst);
/dports/sysutils/triton/Triton-0.8.1/src/libtriton/arch/x86/
H A Dx86Semantics.cpp466 case ID_INS_JS: this->js_s(inst); break; in buildSemantics()
6070 void x86Semantics::js_s(triton::arch::Instruction& inst) { in js_s() function in triton::arch::x86::x86Semantics