Home
last modified time | relevance | path

Searched refs:node_out (Results 1 – 4 of 4) sorted by relevance

/third_party/alsa-lib/test/
Drawmidi.c40 char *node_out = NULL; in main() local
81 node_out = argv[++i]; in main()
100 }else if (node_out){ in main()
101 fprintf(stderr,"%s\n",node_out); in main()
113 if (node_in && (!node_out || strcmp(node_out,node_in))) { in main()
128 if (node_out && (!node_in || strcmp(node_out,node_in))) { in main()
129 fd_out = open(node_out,O_WRONLY); in main()
131 fprintf(stderr,"open %s for output failed\n",node_out); in main()
135 if (node_in && node_out && strcmp(node_out,node_in)==0) { in main()
136 fd_in = fd_out = open(node_out,O_RDWR); in main()
[all …]
/third_party/iowow/src/json/
Diwjson.h726 JBL_NODE parent, const char *key, const char *val, int vlen, JBL_NODE *node_out,
747 IW_EXPORT iwrc jbn_add_item_i64(JBL_NODE parent, const char *key, int64_t val, JBL_NODE *node_out, …
758 IW_EXPORT iwrc jbn_add_item_f64(JBL_NODE parent, const char *key, double val, JBL_NODE *node_out, I…
769 IW_EXPORT iwrc jbn_add_item_obj(JBL_NODE parent, const char *key, JBL_NODE *node_out, IWPOOL *pool);
780 IW_EXPORT iwrc jbn_add_item_arr(JBL_NODE parent, const char *key, JBL_NODE *node_out, IWPOOL *pool);
791 IW_EXPORT iwrc jbn_add_item_bool(JBL_NODE parent, const char *key, bool val, JBL_NODE *node_out, IW…
Diwjson.c1620 …tr(JBL_NODE parent, const char *key, const char *val, int vlen, JBL_NODE *node_out, IWPOOL *pool) { in jbn_add_item_str() argument
1647 if (node_out) { in jbn_add_item_str()
1648 *node_out = n; in jbn_add_item_str()
1677 iwrc jbn_add_item_i64(JBL_NODE parent, const char *key, int64_t val, JBL_NODE *node_out, IWPOOL *po… in jbn_add_item_i64() argument
1697 if (node_out) { in jbn_add_item_i64()
1698 *node_out = n; in jbn_add_item_i64()
1704 iwrc jbn_add_item_f64(JBL_NODE parent, const char *key, double val, JBL_NODE *node_out, IWPOOL *poo… in jbn_add_item_f64() argument
1724 if (node_out) { in jbn_add_item_f64()
1725 *node_out = n; in jbn_add_item_f64()
1731 iwrc jbn_add_item_bool(JBL_NODE parent, const char *key, bool val, JBL_NODE *node_out, IWPOOL *pool… in jbn_add_item_bool() argument
[all …]
/third_party/ejdb/
DChangelog162 * Added `node_out` for every `jbn_add_item_X()` (jbl.h)