Home
last modified time | relevance | path

Searched refs:a_locking (Results 1 – 14 of 14) sorted by relevance

/dports/lang/onyx/onyx-5.1.2/lib/libonyx/include/libonyx/
H A Dnxo_file.h49 nxo_file_new(cw_nxo_t *a_nxo, bool a_locking);
94 nxo_file_readline(cw_nxo_t *a_nxo, bool a_locking, cw_nxo_t *r_string,
H A Dnxo_l.h47 nxoe_l_new(cw_nxoe_t *a_nxoe, cw_nxot_t a_type, bool a_locking);
H A Dnxo_dict.h42 nxo_dict_new(cw_nxo_t *a_nxo, bool a_locking, uint32_t a_dict_size);
H A Dnxo_array.h38 nxo_array_new(cw_nxo_t *a_nxo, bool a_locking, uint32_t a_len);
H A Dnxo_string.h38 nxo_string_new(cw_nxo_t *a_nxo, bool a_locking, uint32_t a_len);
H A Dnxo_thread.h339 nxo_thread_setlocking(cw_nxo_t *a_nxo, bool a_locking);
H A Dnxo_stack.h111 nxo_stack_new(cw_nxo_t *a_nxo, bool a_locking, uint32_t a_mincount);
/dports/lang/onyx/onyx-5.1.2/lib/libonyx/src/
H A Dnxo_file.c77 nxo_file_new(cw_nxo_t *a_nxo, bool a_locking) in nxo_file_new() argument
83 nxoe_l_new(&file->nxoe, NXOT_FILE, a_locking); in nxo_file_new()
85 if (a_locking) in nxo_file_new()
839 nxo_file_readline(cw_nxo_t *a_nxo, bool a_locking, cw_nxo_t *r_string, in nxo_file_readline() argument
959 nxo_string_new(r_string, a_locking, i); in nxo_file_readline()
996 nxo_string_new(r_string, a_locking, i); in nxo_file_readline()
1097 nxo_string_new(r_string, a_locking, i); in nxo_file_readline()
1126 nxo_string_new(r_string, a_locking, i); in nxo_file_readline()
H A Dnxo.c411 nxoe_l_new(cw_nxoe_t *a_nxoe, cw_nxot_t a_type, bool a_locking) in nxoe_l_new() argument
419 a_nxoe->locking = a_locking; in nxoe_l_new()
H A Dnxo_array.c46 nxo_array_new(cw_nxo_t *a_nxo, bool a_locking, uint32_t a_len) in nxo_array_new() argument
53 nxoe_l_new(&array->nxoe, NXOT_ARRAY, a_locking); in nxo_array_new()
55 if (a_locking) in nxo_array_new()
H A Dnxo_string.c68 nxo_string_new(cw_nxo_t *a_nxo, bool a_locking, uint32_t a_len) in nxo_string_new() argument
74 nxoe_l_new(&string->nxoe, NXOT_STRING, a_locking); in nxo_string_new()
76 if (a_locking) in nxo_string_new()
H A Dnxo_stack.c69 nxo_stack_new(cw_nxo_t *a_nxo, bool a_locking, uint32_t a_mincount) in nxo_stack_new() argument
75 nxoe_l_new(&stack->nxoe, NXOT_STACK, a_locking); in nxo_stack_new()
77 if (a_locking) in nxo_stack_new()
H A Dnxo_dict.c71 nxo_dict_new(cw_nxo_t *a_nxo, bool a_locking, uint32_t a_dict_size) in nxo_dict_new() argument
77 nxoe_l_new(&dict->nxoe, NXOT_DICT, a_locking); in nxo_dict_new()
79 if (a_locking) in nxo_dict_new()
H A Dnxo_thread.c1537 nxo_thread_setlocking(cw_nxo_t *a_nxo, bool a_locking) in nxo_thread_setlocking() argument
1548 thread->locking = a_locking; in nxo_thread_setlocking()