Home
last modified time | relevance | path

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

/reactos/sdk/lib/3rdparty/libwine/
H A Ddebug.c57 static struct __wine_debug_channel debug_options[MAX_DEBUG_OPTIONS]; variable
89 struct __wine_debug_channel *opt = bsearch( channel->name, debug_options, nb_debug_options, in __wine_dbg_get_channel_flags()
90 sizeof(debug_options[0]), cmp_name ); in __wine_dbg_get_channel_flags()
107 sizeof(debug_options[0]), cmp_name ); in __wine_dbg_set_channel_flags()
127 if (strlen(name) >= sizeof(debug_options[0].name)) return; in add_option()
132 res = strcmp( name, debug_options[pos].name ); in add_option()
135 debug_options[pos].flags = (debug_options[pos].flags & ~clear) | set; in add_option()
144 if (pos < nb_debug_options) memmove( &debug_options[pos + 1], &debug_options[pos], in add_option()
145 (nb_debug_options - pos) * sizeof(debug_options[0]) ); in add_option()
146 strcpy( debug_options[pos].name, name ); in add_option()
[all …]