Home
last modified time | relevance | path

Searched refs:checked (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/OK3568_Linux_fs/kernel/fs/xfs/
H A Dxfs_health.c30 unsigned int checked = 0; in xfs_health_unmount() local
39 xfs_ag_measure_sickness(pag, &sick, &checked); in xfs_health_unmount()
48 xfs_rt_measure_sickness(mp, &sick, &checked); in xfs_health_unmount()
58 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_health_unmount()
127 unsigned int *checked) in xfs_fs_measure_sickness() argument
131 *checked = mp->m_fs_checked; in xfs_fs_measure_sickness()
170 unsigned int *checked) in xfs_rt_measure_sickness() argument
174 *checked = mp->m_rt_checked; in xfs_rt_measure_sickness()
213 unsigned int *checked) in xfs_ag_measure_sickness() argument
217 *checked = pag->pag_checked; in xfs_ag_measure_sickness()
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxx11/spi/
H A Dmainwindow.cpp124 void MainWindow::on_loop_clicked(bool checked) in on_loop_clicked() argument
126 Q_UNUSED(checked) in on_loop_clicked()
130 void MainWindow::on_clockphase_clicked(bool checked) in on_clockphase_clicked() argument
132 Q_UNUSED(checked) in on_clockphase_clicked()
136 void MainWindow::on_clockpolarity_clicked(bool checked) in on_clockpolarity_clicked() argument
138 Q_UNUSED(checked) in on_clockpolarity_clicked()
142 void MainWindow::on_lsb_clicked(bool checked) in on_lsb_clicked() argument
144 Q_UNUSED(checked) in on_lsb_clicked()
148 void MainWindow::on_cshigh_clicked(bool checked) in on_cshigh_clicked() argument
150 Q_UNUSED(checked) in on_cshigh_clicked()
[all …]
H A Dmainwindow.h22 void on_loop_clicked(bool checked);
24 void on_clockphase_clicked(bool checked);
26 void on_clockpolarity_clicked(bool checked);
28 void on_lsb_clicked(bool checked);
30 void on_cshigh_clicked(bool checked);
32 void on_wire_clicked(bool checked);
34 void on_nocs_clicked(bool checked);
36 void on_ready_clicked(bool checked);
/OK3568_Linux_fs/kernel/fs/xfs/libxfs/
H A Dxfs_health.h105 unsigned int *checked);
110 unsigned int *checked);
115 unsigned int *checked);
120 unsigned int *checked);
129 unsigned int sick, checked; in xfs_fs_has_sickness() local
131 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_fs_has_sickness()
138 unsigned int sick, checked; in xfs_rt_has_sickness() local
140 xfs_rt_measure_sickness(mp, &sick, &checked); in xfs_rt_has_sickness()
147 unsigned int sick, checked; in xfs_ag_has_sickness() local
149 xfs_ag_measure_sickness(pag, &sick, &checked); in xfs_ag_has_sickness()
[all …]
/OK3568_Linux_fs/app/forlinx/forlinx_qt/spitest/
H A Dmainwindow.h27 void on_loop_clicked(bool checked);
29 void on_clockphase_clicked(bool checked);
31 void on_clockpolarity_clicked(bool checked);
33 void on_lsb_clicked(bool checked);
35 void on_cshigh_clicked(bool checked);
37 void on_wire_clicked(bool checked);
39 void on_nocs_clicked(bool checked);
41 void on_ready_clicked(bool checked);
H A Dmainwindow.cpp219 void MainWindow::on_loop_clicked(bool checked) in on_loop_clicked() argument
224 void MainWindow::on_clockphase_clicked(bool checked) in on_clockphase_clicked() argument
229 void MainWindow::on_clockpolarity_clicked(bool checked) in on_clockpolarity_clicked() argument
234 void MainWindow::on_lsb_clicked(bool checked) in on_lsb_clicked() argument
239 void MainWindow::on_cshigh_clicked(bool checked) in on_cshigh_clicked() argument
244 void MainWindow::on_wire_clicked(bool checked) in on_wire_clicked() argument
249 void MainWindow::on_nocs_clicked(bool checked) in on_nocs_clicked() argument
254 void MainWindow::on_ready_clicked(bool checked) in on_ready_clicked() argument
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/spitest/
H A Dmainwindow.h27 void on_loop_clicked(bool checked);
29 void on_clockphase_clicked(bool checked);
31 void on_clockpolarity_clicked(bool checked);
33 void on_lsb_clicked(bool checked);
35 void on_cshigh_clicked(bool checked);
37 void on_wire_clicked(bool checked);
39 void on_nocs_clicked(bool checked);
41 void on_ready_clicked(bool checked);
H A Dmainwindow.cpp219 void MainWindow::on_loop_clicked(bool checked) in on_loop_clicked() argument
224 void MainWindow::on_clockphase_clicked(bool checked) in on_clockphase_clicked() argument
229 void MainWindow::on_clockpolarity_clicked(bool checked) in on_clockpolarity_clicked() argument
234 void MainWindow::on_lsb_clicked(bool checked) in on_lsb_clicked() argument
239 void MainWindow::on_cshigh_clicked(bool checked) in on_cshigh_clicked() argument
244 void MainWindow::on_wire_clicked(bool checked) in on_wire_clicked() argument
249 void MainWindow::on_nocs_clicked(bool checked) in on_nocs_clicked() argument
254 void MainWindow::on_ready_clicked(bool checked) in on_ready_clicked() argument
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dmonitordisk.py187 self.checked = {}
191 self.checked[k] = False
217 …self.preFreeS[k] == 0 or self.preFreeS[k] - freeSpace > self.spaceInterval and not self.checked[k]:
222 if action == "STOPTASKS" and not self.checked[k]:
224 self.checked[k] = True
227 elif action == "HALT" and not self.checked[k]:
229 self.checked[k] = True
243 …self.preFreeI[k] == 0 or self.preFreeI[k] - freeInode > self.inodeInterval and not self.checked[k]:
248 if action == "STOPTASKS" and not self.checked[k]:
250 self.checked[k] = True
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/rtc/
H A Ddatetimewidget.cpp72 auto setEnable= [=](bool checked ){ in initUi() argument
73 ui->yearCombox->setEnabled(checked); in initUi()
74 ui->monthComBox->setEnabled(checked); in initUi()
75 ui->dayComBox->setEnabled(checked); in initUi()
76 ui->hourComBox->setEnabled(checked); in initUi()
77 ui->minutuComBo->setEnabled(checked); in initUi()
80 connect(ui->manualRaidoBtn, &QRadioButton::clicked, this, [=](bool checked){ in initUi() argument
81 setEnable(checked); in initUi()
83 connect(ui->ntpRadioBtn, &QRadioButton::clicked, this, [=](bool checked){ in initUi() argument
84 setEnable(!checked); in initUi()
/OK3568_Linux_fs/kernel/drivers/misc/lkdtm/
H A Dbugs.c229 struct array_bounds *checked; in lkdtm_ARRAY_BOUNDS() local
233 checked = kmalloc(sizeof(*checked) * 2, GFP_KERNEL); in lkdtm_ARRAY_BOUNDS()
234 if (!not_checked || !checked) { in lkdtm_ARRAY_BOUNDS()
236 kfree(checked); in lkdtm_ARRAY_BOUNDS()
242 for (i = 0; i < sizeof(checked->data); i++) in lkdtm_ARRAY_BOUNDS()
243 checked->data[i] = 'A'; in lkdtm_ARRAY_BOUNDS()
252 for (i = 0; i < sizeof(checked->data) + 1; i++) in lkdtm_ARRAY_BOUNDS()
253 checked->data[i] = 'B'; in lkdtm_ARRAY_BOUNDS()
256 kfree(checked); in lkdtm_ARRAY_BOUNDS()
/OK3568_Linux_fs/kernel/tools/lib/api/fs/
H A Dfs.c93 bool checked; member
115 .checked = false,
121 .checked = false,
127 .checked = false,
133 .checked = false,
139 .checked = false,
145 .checked = false,
168 fs->checked = true; in fs__read_mounts()
231 fs->checked = true; in fs__env_override()
263 if (fs->checked) in fs__mountpoint()
/OK3568_Linux_fs/kernel/security/tomoyo/
H A Dcondition.c27 u8 *checked) in tomoyo_argv() argument
33 for (i = 0; i < argc; argv++, checked++, i++) { in tomoyo_argv()
38 *checked = 1; in tomoyo_argv()
62 u8 *checked) in tomoyo_envp() argument
72 for (i = 0; i < envc; envp++, checked++, i++) { in tomoyo_envp()
77 *checked = 1; in tomoyo_envp()
119 u8 *checked; in tomoyo_scan_bprm() local
122 checked = local_checked; in tomoyo_scan_bprm()
125 checked = kzalloc(argc + envc, GFP_NOFS); in tomoyo_scan_bprm()
126 if (!checked) in tomoyo_scan_bprm()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/cpp_int/
H A Dchecked.hpp60 inline A checked_add(A a, A b, const mpl::int_<checked>&) in checked_add() argument
93 inline A checked_subtract(A a, A b, const mpl::int_<checked>&) in checked_subtract() argument
104 inline A checked_multiply(A a, A b, const mpl::int_<checked>&) in checked_multiply() argument
118 inline A checked_divide(A a, A b, const mpl::int_<checked>&) in checked_divide() argument
131 inline A checked_left_shift(A a, boost::ulong_long_type shift, const mpl::int_<checked>&) in checked_left_shift() argument
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/places/forms/
H A DSearchOptions.qml65 setButton.onClicked: changeSearchSettings(distanceOrderButton.checked,
66 nameOrderButton.checked,
71 distanceOrderButton.checked = false
72 nameOrderButton.checked = false
85 distanceOrderButton.checked = model.relevanceHint == PlaceSearchModel.DistanceHint
86 nameOrderButton.checked = model.relevanceHint == PlaceSearchModel.LexicalPlaceNameHint
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/algorithm/
H A Dupdate_renderables.hpp24 std::unordered_set<UnwrappedTileID> checked; in updateRenderables() local
90 if (checked.find(parentRenderTileID) != checked.end()) { in updateRenderables()
95 checked.emplace(parentRenderTileID); in updateRenderables()
/OK3568_Linux_fs/yocto/poky/scripts/contrib/
H A Dverify-homepage.py41 checked = []
46 if realfn in checked:
55 checked.append(realfn)
/OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/examples/cinematicexperience/
H A Dfix_qt5_3_compatibility.patch12 checked: settings.showColors
18 settings.showColors = checked;
27 property bool checked: false
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/net-snmp/net-snmp/
H A Dnet-snmp-add-knob-whether-nlist.h-are-checked.patch4 Subject: [PATCH] net-snmp: add knob whether nlist.h are checked
6 Previously, it still was checked when there was no nlish.h in sysroots directory.
7 Add knob to decide whether nlist.h are checked or not.
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/vim/files/
H A Dvim-add-knob-whether-elf.h-are-checked.patch4 Subject: [PATCH] vim: add knob whether elf.h are checked
6 Previously, it still was checked when there was no elf library in sysroots directory.
7 Add knob to decide whether elf.h are checked or not.
/OK3568_Linux_fs/buildroot/package/qt5cinex/
H A D0001-Fix-execution-problem-with-Qt5.3.patch21 checked: settings.showColors
27 settings.showColors = checked;
36 property bool checked: false
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/flann/
H A Dkdtree_index.h449 DynamicBitset checked(size_); in getNeighbors()
453 … searchLevel(result, vec, tree_roots_[i], 0, checkCount, maxCheck, epsError, heap, checked); in getNeighbors()
458 …archLevel(result, vec, branch.node, branch.mindist, checkCount, maxCheck, epsError, heap, checked); in getNeighbors()
473 float epsError, Heap<BranchSt>* heap, DynamicBitset& checked) in searchLevel() argument
487 if ( checked.test(index) || ((checkCount>=maxCheck)&& result_set.full()) ) return; in searchLevel()
488 checked.set(index); in searchLevel()
518 … searchLevel(result_set, vec, bestChild, mindist, checkCount, maxCheck, epsError, heap, checked); in searchLevel()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/manual/mapitems_backends/
H A Dmain.qml120 o.glPolygons = Qt.binding(function() {return switchPolygons1.checked})
122 o.glCircles = Qt.binding(function() {return switchCircles1.checked})
123 o.glRectangles = Qt.binding(function() {return switchRectangles1.checked})
138 checked: true
193 // return (switchPolygons1.checked)
230 o.glPolygons = Qt.binding(function() {return switchPolygons2.checked})
232 o.glCircles = Qt.binding(function() {return switchCircles2.checked})
233 o.glRectangles = Qt.binding(function() {return switchRectangles2.checked})
240 checked: false
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/map/
H A DMapSliders.qml63 property alias expanded: sliderToggler.checked
80 checked: true
105 anchors.left: sliderToggler.checked ? parent.left : parent.horizontalCenter
107 property real d : sliderToggler.checked ? 1.0 : -1.0
122 anchors.right: sliderToggler.checked ? parent.right : parent.horizontalCenter
124 property real d : sliderToggler.checked ? -1.0 : 1.0
137 visible: sliderToggler.checked
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/forms/
H A DLocale.qml63 if (otherRadioButton.checked) {
81 enRadioButton.checked = true;
84 frRadioButton.checked = true;
87 otherRadioButton.checked = true;

12345678910>>...18