Home
last modified time | relevance | path

Searched refs:debug (Results 651 - 675 of 3739) sorted by relevance

1...<<21222324252627282930>>...150

/third_party/python/Lib/distutils/command/
H A Dbuild_ext.py81 ('debug', 'g',
99 boolean_options = ['inplace', 'debug', 'force', 'swig-cpp', 'user']
121 self.debug = None
137 ('debug', 'debug'),
196 if self.debug:
499 log.debug("skipping '%s' extension (up-to-date)", ext.name)
533 debug=self.debug,
558 debug
[all...]
/kernel/linux/linux-5.10/drivers/isdn/hardware/mISDN/
H A DmISDNinfineon.c37 static u32 debug; variable
226 card->ipac.isac.dch.debug = debug; in _set_debug()
227 card->ipac.hscx[0].bch.debug = debug; in _set_debug()
228 card->ipac.hscx[1].bch.debug = debug; in _set_debug()
250 module_param_call(debug, set_debug, param_get_uint, &debug, S_IRUGO | S_IWUSR);
251 MODULE_PARM_DESC(debug, "infineo
[all...]
/kernel/linux/linux-6.6/drivers/isdn/hardware/mISDN/
H A DmISDNinfineon.c37 static u32 debug; variable
226 card->ipac.isac.dch.debug = debug; in _set_debug()
227 card->ipac.hscx[0].bch.debug = debug; in _set_debug()
228 card->ipac.hscx[1].bch.debug = debug; in _set_debug()
250 module_param_call(debug, set_debug, param_get_uint, &debug, S_IRUGO | S_IWUSR);
251 MODULE_PARM_DESC(debug, "infineo
[all...]
/third_party/python/Lib/
H A Dimaplib.py184 class error(Exception): pass # Logical errors - debug required
189 self.debug = Debug
243 if self.debug >= 1:
257 if self.debug >= 3:
682 if self.debug >= 3:
764 if self.debug >= 1:
949 if self.debug >= 5:
1000 if self.debug >= 4:
1026 if self.debug >= 4:
1120 if self.debug >
[all...]
/third_party/rust/crates/syn/src/
H A Dlit.rs564 pub(crate) fn debug( in fmt()
575 self.debug(formatter, "LitStr") in fmt()
583 pub(crate) fn debug( in fmt()
594 self.debug(formatter, "LitByteStr") in fmt()
602 pub(crate) fn debug( in fmt()
613 self.debug(formatter, "LitByte") in fmt()
621 pub(crate) fn debug( in fmt()
632 self.debug(formatter, "LitChar") in fmt()
640 pub(crate) fn debug( in fmt()
651 self.debug(formatte in fmt()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/etnaviv/
H A Detnaviv_gpu.c548 /* disable debug registers, as they are not normally needed */ in etnaviv_hw_reset()
857 static void verify_dma(struct etnaviv_gpu *gpu, struct dma_debug *debug) in verify_dma() argument
861 debug->address[0] = gpu_read(gpu, VIVS_FE_DMA_ADDRESS); in verify_dma()
862 debug->state[0] = gpu_read(gpu, VIVS_FE_DMA_DEBUG_STATE); in verify_dma()
865 debug->address[1] = gpu_read(gpu, VIVS_FE_DMA_ADDRESS); in verify_dma()
866 debug->state[1] = gpu_read(gpu, VIVS_FE_DMA_DEBUG_STATE); in verify_dma()
868 if (debug->address[0] != debug->address[1]) in verify_dma()
871 if (debug->state[0] != debug in verify_dma()
878 struct dma_debug debug; etnaviv_gpu_debugfs() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/etnaviv/
H A Detnaviv_gpu.c564 /* disable debug registers, as they are not normally needed */ in etnaviv_hw_reset()
895 static void verify_dma(struct etnaviv_gpu *gpu, struct dma_debug *debug) in verify_dma() argument
899 debug->address[0] = gpu_read(gpu, VIVS_FE_DMA_ADDRESS); in verify_dma()
900 debug->state[0] = gpu_read(gpu, VIVS_FE_DMA_DEBUG_STATE); in verify_dma()
903 debug->address[1] = gpu_read(gpu, VIVS_FE_DMA_ADDRESS); in verify_dma()
904 debug->state[1] = gpu_read(gpu, VIVS_FE_DMA_DEBUG_STATE); in verify_dma()
906 if (debug->address[0] != debug->address[1]) in verify_dma()
909 if (debug->state[0] != debug in verify_dma()
916 struct dma_debug debug; etnaviv_gpu_debugfs() local
[all...]
/third_party/eudev/src/shared/
H A Dhashmap.c160 #define HASHMAP_DEBUG_FIELDS struct hashmap_debug_info debug;
557 h->debug.rem_count++; in base_remove_entry()
558 h->debug.last_rem_idx = idx; in base_remove_entry()
717 i->put_count = h->debug.put_count; in hashmap_iterate_entry()
718 i->rem_count = h->debug.rem_count; in hashmap_iterate_entry()
721 assert(i->put_count == h->debug.put_count); in hashmap_iterate_entry()
723 assert(i->rem_count == h->debug.rem_count || in hashmap_iterate_entry()
724 (i->rem_count == h->debug.rem_count - 1 && in hashmap_iterate_entry()
725 i->prev_idx == h->debug.last_rem_idx)); in hashmap_iterate_entry()
727 i->rem_count = h->debug in hashmap_iterate_entry()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.cpp28 #define debug(M, ...) qDebug("DEBUG %d: " M, __LINE__, ##__VA_ARGS__) macro
30 #define debug(M, ...) do {} while (0) macro
171 debug("Failed to open control connection to " in WpaGui()
307 debug("Selected interface '%s'", in openCtrlConnection()
385 debug("Trying to connect to '%s'", cfile); in openCtrlConnection()
398 debug("Failed to attach to wpa_supplicant"); in openCtrlConnection()
459 debug("'%s' command timed out.", cmd); in ctrlRequest()
461 debug("'%s' command failed.", cmd); in ctrlRequest()
742 debug("helpIndex"); in helpIndex()
748 debug("helpContent in helpContents()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.cpp30 #define debug(M, ...) qDebug("DEBUG %d: " M, __LINE__, ##__VA_ARGS__) macro
32 #define debug(M, ...) do {} while (0) macro
173 debug("Failed to open control connection to " in WpaGui()
309 debug("Selected interface '%s'", in openCtrlConnection()
387 debug("Trying to connect to '%s'", cfile); in openCtrlConnection()
400 debug("Failed to attach to wpa_supplicant"); in openCtrlConnection()
461 debug("'%s' command timed out.", cmd); in ctrlRequest()
463 debug("'%s' command failed.", cmd); in ctrlRequest()
757 debug("helpIndex"); in helpIndex()
763 debug("helpContent in helpContents()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Dintel_uncore.c53 i915->uncore.debug = &i915->mmio_debug; in intel_uncore_mmio_debug_init_early()
58 if (!uncore->debug) in mmio_debug_suspend()
61 spin_lock(&uncore->debug->lock); in mmio_debug_suspend()
64 if (!uncore->debug->suspend_count++) { in mmio_debug_suspend()
65 uncore->debug->saved_mmio_check = uncore->debug->unclaimed_mmio_check; in mmio_debug_suspend()
66 uncore->debug->unclaimed_mmio_check = 0; in mmio_debug_suspend()
69 spin_unlock(&uncore->debug->lock); in mmio_debug_suspend()
76 if (!uncore->debug) in mmio_debug_resume()
79 spin_lock(&uncore->debug in mmio_debug_resume()
[all...]
/kernel/linux/linux-5.10/drivers/isdn/mISDN/
H A Dsocket.c14 static u_int *debug; variable
67 if (*debug & DEBUG_SOCKET) in mISDN_send()
84 if (*debug & DEBUG_SOCKET) in mISDN_ctrl()
114 if (*debug & DEBUG_SOCKET) in mISDN_sock_recvmsg()
173 if (*debug & DEBUG_SOCKET) in mISDN_sock_sendmsg()
214 if (*debug & DEBUG_SOCKET) in mISDN_sock_sendmsg()
240 if (*debug & DEBUG_SOCKET) in data_sock_release()
409 if (*debug & DEBUG_SOCKET) in data_sock_setsockopt()
472 if (*debug & DEBUG_SOCKET) in data_sock_bind()
814 debug in misdn_sock_init()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/bios/
H A Dcommand_table2.c182 bp->base.ctx->dc->debug.dmub_command_table) { in encoder_control_digx_v1_5()
198 bp->base.ctx->dc->debug.dmub_command_table) { in encoder_control_fallback()
297 bp->base.ctx->dc->debug.dmub_command_table) { in transmitter_control_v1_6()
364 bp->base.ctx->dc->debug.dmub_command_table) { in transmitter_control_v1_7()
380 bp->base.ctx->dc->debug.dmub_command_table) { in transmitter_control_fallback()
510 bp->base.ctx->dc->debug.dmub_command_table) { in set_pixel_clock_v7()
526 bp->base.ctx->dc->debug.dmub_command_table) { in set_pixel_clock_fallback()
822 bp->base.ctx->dc->debug.dmub_command_table) { in enable_disp_power_gating_v2_1()
840 bp->base.ctx->dc->debug.dmub_command_table) { in enable_disp_power_gating_fallback()
1021 bp->base.ctx->dc->debug in enable_lvtma_control()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dsc/
H A Ddc_dsc.c377 if (dc->debug.dsc_bpp_increment_div) { in dc_dsc_parse_dsc_dpcd()
382 if (dc->debug.dsc_bpp_increment_div >= 1) in dc_dsc_parse_dsc_dpcd()
384 if (dc->debug.dsc_bpp_increment_div >= 2) in dc_dsc_parse_dsc_dpcd()
386 if (dc->debug.dsc_bpp_increment_div >= 4) in dc_dsc_parse_dsc_dpcd()
388 if (dc->debug.dsc_bpp_increment_div >= 8) in dc_dsc_parse_dsc_dpcd()
390 if (dc->debug.dsc_bpp_increment_div >= 16) in dc_dsc_parse_dsc_dpcd()
482 if (!dsc->ctx->dc->debug.disable_dsc) in get_dsc_enc_caps()
484 if (dsc->ctx->dc->debug.native422_support) in get_dsc_enc_caps()
1224 options->dsc_min_slice_height_override = dc->debug.dsc_min_slice_height_override; in dc_dsc_get_default_config_option()
1225 options->dsc_force_odm_hslice_override = dc->debug in dc_dsc_get_default_config_option()
[all...]
/kernel/linux/linux-6.6/drivers/isdn/mISDN/
H A Dsocket.c14 static u_int *debug; variable
67 if (*debug & DEBUG_SOCKET) in mISDN_send()
84 if (*debug & DEBUG_SOCKET) in mISDN_ctrl()
114 if (*debug & DEBUG_SOCKET) in mISDN_sock_recvmsg()
173 if (*debug & DEBUG_SOCKET) in mISDN_sock_sendmsg()
214 if (*debug & DEBUG_SOCKET) in mISDN_sock_sendmsg()
240 if (*debug & DEBUG_SOCKET) in data_sock_release()
409 if (*debug & DEBUG_SOCKET) in data_sock_setsockopt()
472 if (*debug & DEBUG_SOCKET) in data_sock_bind()
814 debug in misdn_sock_init()
[all...]
/third_party/node/lib/
H A D_http_outgoing.js81 let debug = require('internal/util/debuglog').debuglog('http', (fn) => {
82 debug = fn;
478 debug(this.statusCode + ' response should not use chunked encoding,' +
526 debug('Both Content-Length and Transfer-Encoding are removed');
627 debug('Header "%s" contains invalid characters', name);
922 debug('This type of response MUST NOT have a body. ' +
945 debug('write ret = ' + ret);
980 debug('Trailer "%s"[%d] contains invalid characters', field, j);
991 debug('Trailer "%s" contains invalid characters', field);
1073 debug('outgoin
[all...]
/device/soc/rockchip/rk3568/hardware/omx_il/osal/
H A DRockchip_OSAL_Log.h89 #define omx_dbg(debug, flag, fmt, ...) \
91 if (debug & flag) \
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/
H A Dconsole_module.cpp25 const char * const debug = "debug"; in Init() local
30 CreateNamedFunction(debug, LogDebug); in Init()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dcreate_dir_param.cpp38 debug = parcel.ReadBool(); in ReadFromParcel()
56 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, debug); in Marshalling()
/kernel/linux/linux-5.10/arch/arm64/kvm/
H A DMakefile17 guest.o debug.o reset.o sys_regs.o \
25 vgic/vgic-its.o vgic/vgic-debug.o
/kernel/linux/linux-6.6/arch/arm64/kvm/hyp/nvhe/
H A Ddebug-sr.c7 #include <hyp/debug-sr.h>
12 #include <asm/debug-monitors.h>
/kernel/linux/linux-5.10/tools/testing/selftests/lkdtm/
H A Drun.sh10 TRIGGER=/sys/kernel/debug/provoke-crash/DIRECT
11 CLEAR_ONCE=/sys/kernel/debug/clear_warn_once
/kernel/linux/linux-5.10/tools/perf/tests/shell/
H A Dbuildid.sh58 build_id_dir=$(mktemp -d /tmp/perf.debug.XXX)
75 build_id_dir=$(mktemp -d /tmp/perf.debug.XXX)
/kernel/linux/linux-5.10/tools/perf/util/
H A Dgenelf.h7 const void *code, int csize, void *debug, int nr_debug_entries,
11 int jit_add_debug_info(Elf *e, uint64_t code_addr, void *debug, int nr_debug_entries);
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dclient.h11 u32 debug; member
40 if (_client->debug >= NV_DBG_##l) \

Completed in 25 milliseconds

1...<<21222324252627282930>>...150