Home
last modified time | relevance | path

Searched refs:config (Results 3076 - 3100 of 9785) sorted by relevance

1...<<121122123124125126127128129130>>...392

/test/testfwk/xdevice/src/xdevice/_core/command/
H A Dconsole.py30 from _core.config.config_manager import UserConfigManager
182 parser.add_argument("-c", "--config",
188 help="Specify config file path"
368 help="Specify module config json path"),
406 Variables.config = UserConfigManager()
407 if options.config:
408 Variables.config = UserConfigManager(config_file=options.config)
410 Variables.config = UserConfigManager(env=options.test_environment)
427 setattr(options, ConfigConst.resource_path, Variables.config
[all...]
/third_party/glfw/src/
H A Degl_context.c79 static int getEGLConfigAttrib(EGLConfig config, int attrib) in getEGLConfigAttrib() argument
82 eglGetConfigAttrib(_glfw.egl.display, config, attrib, &value); in getEGLConfigAttrib()
187 // HACK: If EGL_EXT_present_opaque is unavailable, ignore any config in chooseEGLConfig()
579 EGLConfig config; in _glfwCreateContextEGL() local
593 if (!chooseEGLConfig(ctxconfig, fbconfig, &config)) in _glfwCreateContextEGL()
692 config, share, attribs); in _glfwCreateContextEGL()
738 eglCreateWindowSurface(_glfw.egl.display, config, native, attribs); in _glfwCreateContextEGL()
744 eglCreatePbufferSurface(_glfw.egl.display, config, attribs); in _glfwCreateContextEGL()
749 eglCreatePlatformWindowSurfaceEXT(_glfw.egl.display, config, native, attribs); in _glfwCreateContextEGL()
760 window->context.egl.config in _glfwCreateContextEGL()
[all...]
/third_party/gn/src/gn/
H A Dtarget.cc27 // Merges the public configs from the given target to the given config list.
210 config file.
212 2. Execute the build config file identified by .gn to set up the global
1065 // build can set all the precompiled header settings in a config and apply in ResolvePrecompiledHeaders()
1085 const Config* config = iter.GetCurrentConfig(); in ResolvePrecompiledHeaders() local
1086 const ConfigValues& cur = config->resolved_values(); in ResolvePrecompiledHeaders()
1097 &config->label(), in ResolvePrecompiledHeaders()
1111 config->label().GetUserVisibleName(with_toolchain) + in ResolvePrecompiledHeaders()
1117 // Have settings from a config, apply them to ourselves. in ResolvePrecompiledHeaders()
1118 pch_header_settings_from = &config in ResolvePrecompiledHeaders()
[all...]
/third_party/node/deps/v8/tools/release/
H A Dcommon_includes.py309 def __init__(self, text, number, config, state, options, handler):
312 self._config = config
685 def MakeStep(step_class=Step, number=0, state=None, config=None,
689 config = config if config is not None else {}
696 return step_class(message, number=number, config=config,
703 config=None,
706 self._config = config o
[all...]
/third_party/rust/crates/bindgen/bindgen-cli/
H A Doptions.rs21 let mut config = CodegenConfig::empty(); in parse_codegen_config() variables
24 "functions" => config.insert(CodegenConfig::FUNCTIONS), in parse_codegen_config()
25 "types" => config.insert(CodegenConfig::TYPES), in parse_codegen_config()
26 "vars" => config.insert(CodegenConfig::VARS), in parse_codegen_config()
27 "methods" => config.insert(CodegenConfig::METHODS), in parse_codegen_config()
28 "constructors" => config.insert(CodegenConfig::CONSTRUCTORS), in parse_codegen_config()
29 "destructors" => config.insert(CodegenConfig::DESTRUCTORS), in parse_codegen_config()
39 Ok(config) in parse_codegen_config()
680 if let Some(config) = generate { in builder_from_flags()
681 builder = builder.with_codegen_config(config); in builder_from_flags()
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/
H A DMakefile108 CONFIGS = $(ROOTDIR)/config
194 -a config=$(ROOTDIR)/config \
232 -a stylesdir=$(ROOTDIR)/config \
424 CHECK_CONTRACTIONS = git grep -i -F -f $(ROOTDIR)/config/CI/contractions | egrep -v -E -f $(ROOTDIR)/config/CI/contractions-allowed
433 CODESPELL = codespell --config $(ROOTDIR)/config/CI/codespellrc -S '*.js' -S './antora*/*' -S 'ERRS*,*.pdf,*.html'
436 echo "Found probable misspellings. Corrections can be added to config/CI/codespell-allowed:" ; \
444 CHECK_WRITING = git grep -E -f $(ROOTDIR)/config/C
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dintel-pt.c35 #include "config.h"
761 struct perf_event_attr *attr, u64 *config) in intel_pt_get_config()
764 if (config) in intel_pt_get_config()
765 *config = attr->config; in intel_pt_get_config()
787 u64 config; in intel_pt_return_compression() local
793 if (intel_pt_get_config(pt, &evsel->core.attr, &config) && in intel_pt_return_compression()
794 (config & pt->noretcomp_bit)) in intel_pt_return_compression()
803 u64 config; in intel_pt_branch_enable() local
806 if (intel_pt_get_config(pt, &evsel->core.attr, &config) in intel_pt_branch_enable()
760 intel_pt_get_config(struct intel_pt *pt, struct perf_event_attr *attr, u64 *config) intel_pt_get_config() argument
817 u64 config; intel_pt_mtc_period() local
836 u64 config; intel_pt_timeless_decoding() local
870 u64 config; intel_pt_have_tsc() local
901 u64 config; intel_pt_ctl() local
[all...]
/kernel/linux/linux-6.6/arch/x86/events/intel/
H A Dcore.c2249 intel_pmu_enable_bts(event->hw.config); in __intel_pmu_enable_all()
2430 return unlikely(event->hw.config & HSW_IN_TX_CHECKPOINTED) != 0; in event_is_checkpointed()
2775 if (hwc->config & ARCH_PERFMON_EVENTSEL_USR) in intel_pmu_enable_fixed()
2777 if (hwc->config & ARCH_PERFMON_EVENTSEL_OS) in intel_pmu_enable_fixed()
2783 if (x86_pmu.version > 2 && hwc->config & ARCH_PERFMON_EVENTSEL_ANY) in intel_pmu_enable_fixed()
2819 intel_pmu_enable_bts(hwc->config); in intel_pmu_enable_event()
3169 if (unlikely(constraint_match(c, event->hw.config))) { in intel_vlbr_constraints()
3178 int idx, u64 config) in intel_alt_er()
3192 if (config & ~extra_regs[alt_idx].valid_mask) in intel_alt_er()
3204 event->hw.config in intel_fixup_er()
3177 intel_alt_er(struct cpu_hw_events *cpuc, int idx, u64 config) intel_alt_er() argument
4524 intel_event_sysfs_show(char *page, u64 config) intel_event_sysfs_show() argument
[all...]
/applications/standard/calendardata/calendarmanager/native/src/
H A Dnative_calendar.cpp312 bool Calendar::SetConfig(const CalendarConfig& config) in SetConfig() argument
317 if (std::get_if<1>(&config.color)) { in SetConfig()
318 valuesBucket.Put("calendar_color", std::get<1>(config.color)); in SetConfig()
320 if (config.enableReminder) { in SetConfig()
321 valuesBucket.Put("canReminder", config.enableReminder.value()); in SetConfig()
332 m_config = config; in SetConfig()
/base/location/services/location_locator/locator/source/
H A Dlocator_required_data_manager.cpp92 AppIdentity &identity, std::shared_ptr<LocatingRequiredDataConfig>& config, const sptr<IRemoteObject>& callback) in RegisterCallback()
94 if (config->GetType() == LocatingRequiredDataType::WIFI) { in RegisterCallback()
105 if (config->GetNeedStartScan()) { in RegisterCallback()
111 SendGetWifiListEvent(DEFAULT_TIMEOUT_4S >= config->GetScanTimeoutMs() ? in RegisterCallback()
112 config->GetScanTimeoutMs() : DEFAULT_TIMEOUT_4S); in RegisterCallback()
117 } else if (config->GetType() == LocatingRequiredDataType::BLUE_TOOTH) { in RegisterCallback()
91 RegisterCallback( AppIdentity &identity, std::shared_ptr<LocatingRequiredDataConfig>& config, const sptr<IRemoteObject>& callback) RegisterCallback() argument
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/observer/
H A Dapp_event_observer_mgr.cpp220 int64_t AppEventObserverMgr::RegisterObserver(const std::string& observerName, const ReportConfig& config) in RegisterObserver() argument
232 observer->SetReportConfig(config); in RegisterObserver()
359 int AppEventObserverMgr::SetReportConfig(int64_t observerSeq, const ReportConfig& config) in SetReportConfig() argument
363 HILOG_WARN(LOG_CORE, "failed to set config, seq=%{public}" PRId64, observerSeq); in SetReportConfig()
366 observers_[observerSeq]->SetReportConfig(config); in SetReportConfig()
370 int AppEventObserverMgr::GetReportConfig(int64_t observerSeq, ReportConfig& config) in GetReportConfig() argument
374 HILOG_WARN(LOG_CORE, "failed to get config, seq=%{public}" PRId64, observerSeq); in GetReportConfig()
377 config = observers_[observerSeq]->GetReportConfig(); in GetReportConfig()
/base/request/request/frameworks/cj/ffi/src/
H A Dcj_request_task.cpp266 ExceptionError CJTask::Create(Context* context, Config &config) in Create() argument
270 config_ = config; in Create()
278 if (config.mode == Mode::FOREGROUND) { in Create()
306 Config &config) in GetTask()
323 config = task->config_; in GetTask()
327 int32_t result = RequestManager::GetInstance()->GetTask(taskId, token, config); in GetTask()
305 GetTask(OHOS::AbilityRuntime::Context* context, std::string &taskId, std::string &token, Config &config) GetTask() argument
/base/request/request/services/src/manage/scheduler/
H A Dmod.rs26 use crate::config::Mode;
38 use crate::task::config::Action;
406 let config = database
410 if let Err(reason) = config.satisfy_network(self.state_handler.network()) {
421 if !config.satisfy_foreground(self.state_handler.top_uid()) {
424 task_id, config.common_data.uid
/base/security/access_token/services/accesstokenmanager/main/cpp/src/database/
H A Daccess_token_db.cpp55 NativeRdb::RdbStoreConfig config(dbPath); in AccessTokenDb()
56 config.SetSecurityLevel(NativeRdb::SecurityLevel::S3); in AccessTokenDb()
57 config.SetAllowRebuild(true); in AccessTokenDb()
58 config.SetHaMode(NativeRdb::HAMode::MAIN_REPLICA); // Real-time dual-write backup database in AccessTokenDb()
59 config.SetServiceName(std::string(ACCESSTOKEN_SERVICE_NAME)); in AccessTokenDb()
63 db_ = NativeRdb::RdbHelper::GetRdbStore(config, DATABASE_VERSION_4, callback, res); in AccessTokenDb()
/drivers/hdf_core/framework/support/platform/include/hdmi/
H A Dhdmi_core.h154 void (*audioPathSet)(struct HdmiCntlr *cntlr, struct HdmiAudioConfigInfo *config);
174 void (*hdrTimerSet)(struct HdmiCntlr *cntlr, struct HdmiHdrTimerConfig *config);
273 static inline void HdmiCntlrAudioPathSet(struct HdmiCntlr *cntlr, struct HdmiAudioConfigInfo *config) in HdmiCntlrAudioPathSet() argument
277 cntlr->ops->audioPathSet(cntlr, config); in HdmiCntlrAudioPathSet()
336 static inline void HdmiCntlrHdrTimerSet(struct HdmiCntlr *cntlr, struct HdmiHdrTimerConfig *config) in HdmiCntlrHdrTimerSet() argument
340 cntlr->ops->hdrTimerSet(cntlr, config); in HdmiCntlrHdrTimerSet()
/drivers/peripheral/camera/vdi_base/v4l2/src/camera_device/
H A Dcamera_device_vdi_impl.cpp208 CameraHostConfig *config = CameraHostConfig::GetInstance(); in GetEnabledFromCfg() local
209 if (config == nullptr) { in GetEnabledFromCfg()
213 RetCode rc = config->GetCameraAbility(cameraId_, ability); in GetEnabledFromCfg()
301 CameraHostConfig *config = CameraHostConfig::GetInstance(); in Close() local
302 if (config == nullptr) { in Close()
308 RetCode rc = config->GetPhysicCameraIds(cameraId_, phyCameraIds); in Close()
317 CAMERA_LOGW("config phyCameraId undefined in device manager."); in Close()
/drivers/peripheral/codec/hal/src/
H A Dcodec_adapter.cpp134 int32_t OmxAdapterGetConfig(struct CodecComponentNode *codecNode, OMX_INDEXTYPE index, int8_t *config, in OmxAdapterGetConfig() argument
137 if (codecNode == nullptr || codecNode->node == nullptr || config == nullptr) { in OmxAdapterGetConfig()
138 CODEC_LOGE("codecNode, node or config is null"); in OmxAdapterGetConfig()
141 return codecNode->node->GetConfig(index, config, configLen); in OmxAdapterGetConfig()
144 int32_t OmxAdapterSetConfig(struct CodecComponentNode *codecNode, OMX_INDEXTYPE index, int8_t *config, in OmxAdapterSetConfig() argument
147 if (codecNode == nullptr || codecNode->node == nullptr || config == nullptr) { in OmxAdapterSetConfig()
148 CODEC_LOGE("codecNode, node or config is null"); in OmxAdapterSetConfig()
151 return codecNode->node->SetConfig(index, config, configLen); in OmxAdapterSetConfig()
/kernel/linux/linux-5.10/drivers/crypto/ccree/
H A Dcc_hw_queue_defs.h531 * @config: Padding mode
534 enum cc_hash_conf_pad config) in set_cipher_config1()
536 pdesc->word[4] |= FIELD_PREP(WORD4_CIPHER_CONF1, config); in set_cipher_config1()
558 * @config: True to enable byte swapping
560 static inline void set_bytes_swap(struct cc_hw_desc *pdesc, bool config) in set_bytes_swap() argument
562 pdesc->word[4] |= FIELD_PREP(WORD4_BYTES_SWAP, config); in set_bytes_swap()
624 * @config: Any one of the cipher do defined in [CC7x-DESC]
627 enum cc_hash_cipher_pad config) in set_cipher_do()
630 (config & HW_KEY_MASK_CIPHER_DO)); in set_cipher_do()
533 set_cipher_config1(struct cc_hw_desc *pdesc, enum cc_hash_conf_pad config) set_cipher_config1() argument
626 set_cipher_do(struct cc_hw_desc *pdesc, enum cc_hash_cipher_pad config) set_cipher_do() argument
/kernel/linux/linux-5.10/arch/x86/events/zhaoxin/
H A Dcore.c324 if (hwc->config & ARCH_PERFMON_EVENTSEL_USR) in zhaoxin_pmu_enable_fixed()
326 if (hwc->config & ARCH_PERFMON_EVENTSEL_OS) in zhaoxin_pmu_enable_fixed()
429 if ((event->hw.config & c->cmask) == c->code) in zhaoxin_get_event_constraints()
437 PMU_FORMAT_ATTR(event, "config:0-7");
438 PMU_FORMAT_ATTR(umask, "config:8-15");
439 PMU_FORMAT_ATTR(edge, "config:18");
440 PMU_FORMAT_ATTR(inv, "config:23");
441 PMU_FORMAT_ATTR(cmask, "config:24-31");
452 static ssize_t zhaoxin_event_sysfs_show(char *page, u64 config) in zhaoxin_event_sysfs_show() argument
454 u64 event = (config in zhaoxin_event_sysfs_show()
[all...]
/kernel/linux/linux-5.10/arch/x86/kernel/
H A Dtboot.c437 /* # pages for each config regs space - used by fixmap */
441 /* offsets from pub/priv config space */
471 void *heap_base, *heap_ptr, *config; in tboot_get_dmar_table() local
481 /* map config space in order to get heap addr */ in tboot_get_dmar_table()
482 config = ioremap(TXT_PUB_CONFIG_REGS_BASE, NR_TXT_CONFIG_PAGES * in tboot_get_dmar_table()
484 if (!config) in tboot_get_dmar_table()
488 heap_base = ioremap(*(u64 *)(config + TXTCR_HEAP_BASE), in tboot_get_dmar_table()
489 *(u64 *)(config + TXTCR_HEAP_SIZE)); in tboot_get_dmar_table()
490 iounmap(config); in tboot_get_dmar_table()
/kernel/linux/linux-5.10/arch/arm/mach-imx/
H A Dmmdc.c163 PMU_FORMAT_ATTR(event, "config:0-63");
238 int cfg = event->attr.config; in mmdc_pmu_group_event_is_valid()
262 set_bit(leader->attr.config, &counter_mask); in mmdc_pmu_group_is_valid()
280 int cfg = event->attr.config; in mmdc_pmu_event_init()
315 event->attr.config); in mmdc_pmu_event_update()
365 int cfg = event->attr.config; in mmdc_pmu_event_add()
400 int cfg = event->attr.config; in mmdc_pmu_event_del()
/kernel/linux/linux-5.10/drivers/crypto/virtio/
H A Dvirtio_crypto_core.c335 vdev->config->del_vqs(vdev); in virtcrypto_del_vqs()
359 if (!vdev->config->get) { in virtcrypto_probe()
360 dev_err(&vdev->dev, "%s failure: config access disabled\n", in virtcrypto_probe()
464 vcrypto->vdev->config->reset(vdev); in virtcrypto_probe()
499 vdev->config->reset(vdev); in virtcrypto_remove()
519 vdev->config->reset(vdev); in virtcrypto_freeze()
555 vcrypto->vdev->config->reset(vdev); in virtcrypto_restore()
/kernel/linux/linux-6.6/arch/arm/mach-imx/
H A Dmmdc.c163 PMU_FORMAT_ATTR(event, "config:0-63");
238 int cfg = event->attr.config; in mmdc_pmu_group_event_is_valid()
262 set_bit(leader->attr.config, &counter_mask); in mmdc_pmu_group_is_valid()
280 int cfg = event->attr.config; in mmdc_pmu_event_init()
315 event->attr.config); in mmdc_pmu_event_update()
365 int cfg = event->attr.config; in mmdc_pmu_event_add()
400 int cfg = event->attr.config; in mmdc_pmu_event_del()
/kernel/linux/linux-6.6/arch/s390/kernel/
H A Dperf_pai_crypto.c61 event->attr.config, event->cpu, in paicrypt_event_destroy()
93 if (event->attr.config != PAI_CRYPTO_BASE) { in paicrypt_getdata()
95 event->attr.config - PAI_CRYPTO_BASE, in paicrypt_getdata()
198 if (a->config < PAI_CRYPTO_BASE || in paicrypt_event_init()
199 a->config > PAI_CRYPTO_BASE + paicrypt_cnt) in paicrypt_event_init()
205 if (a->sample_period && a->config != PAI_CRYPTO_BASE) in paicrypt_event_init()
406 PMU_FORMAT_ATTR(event, "config:0-63");
/kernel/linux/linux-5.10/drivers/hwmon/
H A Dadm1021.c265 int config = i2c_smbus_read_byte_data( in low_power_store() local
269 (config & 0xBF) | (low_power << 6)); in low_power_store()
327 int conv_rate, status, config, man_id, dev_id; in adm1021_detect() local
337 config = i2c_smbus_read_byte_data(client, ADM1021_REG_CONFIG_R); in adm1021_detect()
340 if ((status & 0x03) || (config & 0x3F) || (conv_rate & 0xF8)) { in adm1021_detect()
401 && (config & 0x7F) == 0x00 in adm1021_detect()

Completed in 33 milliseconds

1...<<121122123124125126127128129130>>...392