Home
last modified time | relevance | path

Searched refs:force (Results 1 – 25 of 1532) sorted by relevance

12345678910>>...62

/OK3568_Linux_fs/kernel/arch/powerpc/sysdev/
H A Dipic.c36 .force = IPIC_SIFCR_H,
43 .force = IPIC_SIFCR_H,
50 .force = IPIC_SIFCR_H,
57 .force = IPIC_SIFCR_H,
64 .force = IPIC_SIFCR_H,
71 .force = IPIC_SIFCR_H,
78 .force = IPIC_SIFCR_H,
85 .force = IPIC_SIFCR_H,
92 .force = IPIC_SIFCR_H,
99 .force = IPIC_SIFCR_H,
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/selftests/
H A Dtest-drm_cmdline_parser.c35 FAIL_ON(mode.force != DRM_FORCE_ON); in drm_cmdline_test_force_e_only()
55 FAIL_ON(mode.force != DRM_FORCE_ON); in drm_cmdline_test_force_D_only_not_digital()
79 FAIL_ON(mode.force != DRM_FORCE_ON_DIGITAL); in drm_cmdline_test_force_D_only_hdmi()
103 FAIL_ON(mode.force != DRM_FORCE_ON_DIGITAL); in drm_cmdline_test_force_D_only_dvi()
123 FAIL_ON(mode.force != DRM_FORCE_OFF); in drm_cmdline_test_force_d_only()
169 FAIL_ON(mode.force != DRM_FORCE_UNSPECIFIED); in drm_cmdline_test_res()
237 FAIL_ON(mode.force != DRM_FORCE_UNSPECIFIED); in drm_cmdline_test_res_vesa()
261 FAIL_ON(mode.force != DRM_FORCE_UNSPECIFIED); in drm_cmdline_test_res_vesa_rblank()
285 FAIL_ON(mode.force != DRM_FORCE_UNSPECIFIED); in drm_cmdline_test_res_rblank()
310 FAIL_ON(mode.force != DRM_FORCE_UNSPECIFIED); in drm_cmdline_test_res_bpp()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/
H A Dbuiltin-buildid-list.c52 static int perf_session__list_build_ids(bool force, bool with_hits) in perf_session__list_build_ids() argument
58 .force = force, in perf_session__list_build_ids()
97 bool force = false; in cmd_buildid_list() local
101 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), in cmd_buildid_list()
117 return perf_session__list_build_ids(force, with_hits); in cmd_buildid_list()
H A Dbuiltin-evlist.c28 .force = details->force, in __cmd_evlist()
60 OPT_BOOLEAN('f', "force", &details.force, "don't complain, do it"), in cmd_evlist()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/subdev/bus/
H A Dhwsq.h14 bool force; member
26 .force = 0, in hwsq_stride()
39 .force = 0, in hwsq_reg2()
52 .force = 0, in hwsq_reg()
113 reg->force = true; in hwsq_nuke()
120 if (temp != ((temp & ~mask) | data) || reg->force) in hwsq_mask()
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dpatch.py88 def Import(self, patch, force): argument
104 def Push(self, force): argument
107 def Pop(self, force): argument
219 def Import(self, patch, force = None): argument
221 PatchSet.Import(self, patch, force)
229 def _applypatch(self, patch, force = False, reverse = False, run = True): argument
237 if not force:
243 if force:
257 def Push(self, force = False, all = False, run = True): argument
263 self._applypatch(i, force)
[all …]
/OK3568_Linux_fs/kernel/arch/um/kernel/
H A Dtlb.c43 int force; member
46 #define INIT_HVC(mm, force, userspace) \ argument
53 .force = force })
249 if (hvc->force || pte_newpage(*pte)) { in update_pte_range()
275 if (hvc->force || pmd_newpage(*pmd)) { in update_pmd_range()
297 if (hvc->force || pud_newpage(*pud)) { in update_pud_range()
319 if (hvc->force || p4d_newpage(*p4d)) { in update_p4d_range()
330 unsigned long end_addr, int force) in fix_range_common() argument
337 hvc = INIT_HVC(mm, force, userspace); in fix_range_common()
342 if (force || pgd_newpage(*pgd)) { in fix_range_common()
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/
H A Dtest-reexec66 if [ -f $LOGS/force.$target.$task ]; then
81 bitbake $target -c $task -f > $LOGS/force.$target.$task
84 cp $LOGS/force.$target.$task $LOGS/failed.$target.$task
87 bitbake $target >> $LOGS/force.$target.$task
90 cp $LOGS/force.$target.$task $LOGS/failed.$target.$task
/OK3568_Linux_fs/kernel/drivers/gpu/drm/
H A Ddrm_probe_helper.c281 drm_helper_probe_detect_ctx(struct drm_connector *connector, bool force) in drm_helper_probe_detect_ctx() argument
293 ret = funcs->detect_ctx(connector, &ctx, force); in drm_helper_probe_detect_ctx()
295 ret = connector->funcs->detect(connector, force); in drm_helper_probe_detect_ctx()
330 bool force) in drm_helper_probe_detect() argument
337 return drm_helper_probe_detect_ctx(connector, force); in drm_helper_probe_detect()
344 ret = funcs->detect_ctx(connector, ctx, force); in drm_helper_probe_detect()
346 ret = connector->funcs->detect(connector, force); in drm_helper_probe_detect()
450 if (connector->force) { in drm_helper_probe_single_connector_modes()
451 if (connector->force == DRM_FORCE_ON || in drm_helper_probe_single_connector_modes()
452 connector->force == DRM_FORCE_ON_DIGITAL) in drm_helper_probe_single_connector_modes()
[all …]
H A Ddrm_sysfs.c121 old_force = connector->force; in status_store()
124 connector->force = 0; in status_store()
126 connector->force = DRM_FORCE_ON; in status_store()
128 connector->force = DRM_FORCE_ON_DIGITAL; in status_store()
130 connector->force = DRM_FORCE_OFF; in status_store()
134 if (old_force != connector->force || !connector->force) { in status_store()
138 old_force, connector->force); in status_store()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-httpd/nginx/files/
H A Dnginx-cross.patch101 + --with-int=VALUE force int size
102 + --with-long=VALUE force long size
103 + --with-long-long=VALUE force long long size
104 + --with-ptr-size=VALUE force pointer size
105 + --with-sig-atomic-t=VALUE force sig_atomic_t size
106 + --with-size-t=VALUE force size_t size
107 + --with-off-t=VALUE force off_t size
108 + --with-time-t=VALUE force time_t size
109 + --with-sys-nerr=VALUE force sys_nerr value
110 + --with-endian=VALUE force system endianess
/OK3568_Linux_fs/kernel/arch/x86/platform/iris/
H A Diris.c32 static bool force; variable
34 module_param(force, bool, 0);
35 MODULE_PARM_DESC(force, "Set to one to force poweroff handler installation.");
95 if (force != 1) { in iris_init()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/lvm2/files/
H A D0001-Avoid-bashisms-in-init-scripts.patch72 - echo $"Usage: $0 {start|stop|force-stop|restart|condrestart|try-restart|status}"
73 + echo "Usage: $0 {start|stop|force-stop|restart|condrestart|try-restart|status}"
91 - echo $"Usage: $0 {start|stop|restart|status|force-stop}"
92 + echo "Usage: $0 {start|stop|restart|status|force-stop}"
110 - echo $"Usage: $0 {start|stop|restart|status|force-stop}"
111 + echo "Usage: $0 {start|stop|restart|status|force-stop}"
/OK3568_Linux_fs/kernel/tools/lib/lockdep/
H A DMakefile120 $(LIB_IN): force
129 tags: force
134 TAGS: force
157 PHONY += force
158 force: target
/OK3568_Linux_fs/kernel/drivers/cpuidle/
H A Dcpuidle-haltpoll.c21 static bool force __read_mostly;
22 module_param(force, bool, 0444);
23 MODULE_PARM_DESC(force, "Load unconditionally");
99 return kvm_para_has_hint(KVM_HINTS_REALTIME) || force; in haltpoll_want()
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/initscripts/initscripts-1.0/
H A Dcheckfs.sh24 force="-f"
26 force=""
40 fsck $spinner -R -A $fix $force
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl_map_renderer.cpp8 static QThreadStorage<bool> force; in needsToForceScheduler() local
10 if (!force.hasLocalData()) { in needsToForceScheduler()
11 force.setLocalData(mbgl::Scheduler::GetCurrent() == nullptr); in needsToForceScheduler()
14 return force.localData(); in needsToForceScheduler()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/hal_g6/phy/rf/
H A Dhalrf_iqk.c242 void halrf_doiqk(struct rf_info *rf, bool force, enum phl_phy_idx phy_idx, in halrf_doiqk() argument
253 if(!force) { in halrf_doiqk()
284 void halrf_drv_iqk(struct rf_info *rf, enum phl_phy_idx phy_idx, bool force) { in halrf_drv_iqk() argument
290 halrf_doiqk(rf, force, phy_idx, RF_PATH_A); in halrf_drv_iqk()
293 halrf_doiqk(rf, force, phy_idx, RF_PATH_B); in halrf_drv_iqk()
296 halrf_doiqk(rf, force, phy_idx, RF_PATH_A); in halrf_drv_iqk()
297 halrf_doiqk(rf, force, phy_idx, RF_PATH_B); in halrf_drv_iqk()
396 bool halrf_fw_iqk(struct rf_info *rf, enum phl_phy_idx phy_idx, bool force) { in halrf_fw_iqk() argument
423 void halrf_iqk(struct rf_info *rf, enum phl_phy_idx phy_idx, bool force) in halrf_iqk() argument
436 isfail = halrf_fw_iqk(rf, phy_idx, force); in halrf_iqk()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/hal_g6/phy/rf/
H A Dhalrf_iqk.c242 void halrf_doiqk(struct rf_info *rf, bool force, enum phl_phy_idx phy_idx, in halrf_doiqk() argument
253 if(!force) { in halrf_doiqk()
284 void halrf_drv_iqk(struct rf_info *rf, enum phl_phy_idx phy_idx, bool force) { in halrf_drv_iqk() argument
290 halrf_doiqk(rf, force, phy_idx, RF_PATH_A); in halrf_drv_iqk()
293 halrf_doiqk(rf, force, phy_idx, RF_PATH_B); in halrf_drv_iqk()
296 halrf_doiqk(rf, force, phy_idx, RF_PATH_A); in halrf_drv_iqk()
297 halrf_doiqk(rf, force, phy_idx, RF_PATH_B); in halrf_drv_iqk()
396 bool halrf_fw_iqk(struct rf_info *rf, enum phl_phy_idx phy_idx, bool force) { in halrf_fw_iqk() argument
423 void halrf_iqk(struct rf_info *rf, enum phl_phy_idx phy_idx, bool force) in halrf_iqk() argument
436 isfail = halrf_fw_iqk(rf, phy_idx, force); in halrf_iqk()
[all …]
/OK3568_Linux_fs/kernel/drivers/platform/x86/
H A Dsamsung-q10.c20 static bool force; variable
21 module_param(force, bool, 0);
22 MODULE_PARM_DESC(force,
133 if (!force && !dmi_check_system(samsungq10_dmi_table)) in samsungq10_init()
/OK3568_Linux_fs/kernel/tools/lib/traceevent/plugins/
H A DMakefile151 $(PLUGINS_IN): force
170 tags: force
175 TAGS: force
220 PHONY += force plugins
221 force: target
/OK3568_Linux_fs/kernel/arch/x86/platform/geode/
H A Dalix.c38 static bool force = 0; variable
39 module_param(force, bool, 0444);
41 MODULE_PARM_DESC(force, "Force detection as ALIX.2/ALIX.3 platform");
122 if (force) { in alix_present()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mfd/
H A Dqcom-rpm.txt197 - qcom,force-mode:
198 Usage: optional (default if no other qcom,force-mode is specified)
202 QCOM_RPM_FORCE_MODE_NONE - do not force any mode
203 QCOM_RPM_FORCE_MODE_LPM - force into low power mode
204 QCOM_RPM_FORCE_MODE_HPM - force into high power mode
223 - qcom,force-mode:
228 QCOM_RPM_FORCE_MODE_NONE - do not force any mode
229 QCOM_RPM_FORCE_MODE_LPM - force into low power mode
230 QCOM_RPM_FORCE_MODE_HPM - force into high power mode
279 qcom,force-mode = <QCOM_RPM_FORCE_MODE_AUTO>;
/OK3568_Linux_fs/kernel/Documentation/networking/device_drivers/ethernet/ti/
H A Dtlan.rst81 3. You can set duplex=1 to force half duplex, and duplex=2 to
82 force full duplex.
84 4. You can set speed=10 to force 10Mbs operation, and speed=100
85 to force 100Mbs operation. (I'm not sure what will happen
91 To force a 10Mbps Half-Duplex link do "insmod tlan.o speed=10
115 ether=0,0,0x12,0,eth0 will force link to 100Mbps Half-Duplex.
118 use the above options on a per adapter basis. To force a 100Mbit/HD
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/hal_g6/
H A Dhal_api_rf.c281 u8 phy_idx, u8 force) in rtw_hal_rf_chl_rfk_trigger() argument
290 phy_idx, force); in rtw_hal_rf_chl_rfk_trigger()
293 hal_status = halrf_chl_rfk_trigger(hal_info->rf, phy_idx, force); in rtw_hal_rf_chl_rfk_trigger()
308 u8 force) in rtw_hal_rf_dack_trigger() argument
313 hal_status = halrf_dack_trigger(hal_info->rf, force); in rtw_hal_rf_dack_trigger()
325 u8 phy_idx, u8 force) in rtw_hal_rf_iqk_trigger() argument
329 hal_status = halrf_iqk_trigger(hal_info->rf, phy_idx, force); in rtw_hal_rf_iqk_trigger()
354 u8 phy_idx, u8 force) in rtw_hal_rf_dpk_trigger() argument
358 hal_status = halrf_dpk_trigger(hal_info->rf, phy_idx, force); in rtw_hal_rf_dpk_trigger()
384 u8 phy_idx, u8 force) in rtw_hal_rf_gapk_trigger() argument
[all …]

12345678910>>...62