Home
last modified time | relevance | path

Searched refs:search (Results 1 – 25 of 795) sorted by relevance

12345678910>>...32

/openbmc/webui-vue/src/components/Global/
H A DSearch.vue2 <div class="search-global">
4 :label="$t('global.form.search')"
11 <icon-search class="search-icon" />
17 class="search-input"
19 :aria-label="$t('global.form.search')"
40 import IconSearch from '@carbon/icons-vue/es/search/16';
50 return this.$t('global.form.search');
61 this.$emit('change-search', this.filter);
65 this.$emit('clear-search');
73 .search-input {
[all …]
/openbmc/phosphor-webui/app/common/directives/
H A Dlog-search-control.js15 var search =
17 if (event.keyCode === 13 && search.length >= 2) {
19 $scope.addSearchItem(search);
21 if (search.length == 0) {
33 var search =
35 if (search.length >= 2) {
37 $scope.addSearchItem(search);
39 if (search.length == 0) {
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dflowring.c49 while (search) { in brcmf_flowring_is_tdls_mac()
52 search = search->next; in brcmf_flowring_is_tdls_mac()
398 while (search) { in brcmf_flowring_detach()
399 remove = search; in brcmf_flowring_detach()
400 search = search->next; in brcmf_flowring_detach()
446 while (search) { in brcmf_flowring_delete_peer()
451 prev = search; in brcmf_flowring_delete_peer()
452 search = search->next; in brcmf_flowring_delete_peer()
465 if (search) { in brcmf_flowring_delete_peer()
470 kfree(search); in brcmf_flowring_delete_peer()
[all …]
/openbmc/linux/net/netfilter/
H A Dnf_conntrack_amanda.c62 } search[] __read_mostly = { variable
119 search[SEARCH_CONNECT].ts); in amanda_help()
125 search[SEARCH_NEWLINE].ts); in amanda_help()
134 off += start + search[i].len; in amanda_help()
207 for (i = 0; i < ARRAY_SIZE(search); i++) in nf_conntrack_amanda_fini()
208 textsearch_destroy(search[i].ts); in nf_conntrack_amanda_fini()
218 search[i].ts = textsearch_prepare(ts_algo, search[i].string, in nf_conntrack_amanda_init()
219 search[i].len, in nf_conntrack_amanda_init()
221 if (IS_ERR(search[i].ts)) { in nf_conntrack_amanda_init()
222 ret = PTR_ERR(search[i].ts); in nf_conntrack_amanda_init()
[all …]
/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dtest_regexps.py31 assert re.search(RE_MACRO_DEFINE, r'''
59 assert re.search(RE_TYPEINFO_START, r'''
68 assert re.search(RE_TYPEINFO_START, r'''
128 assert re.search(TypeInfoVar.regexp, test_simple, re.MULTILINE)
144 assert re.search(TypeInfoVar.regexp, test_interfaces, re.MULTILINE)
158 assert re.search(TypeInfoVar.regexp, test_comments, re.MULTILINE)
173 assert re.search(TypeInfoVar.regexp, test_comments, re.MULTILINE)
178 assert re.search(RE_STRUCT_TYPEDEF, r'''
187 assert re.search(RE_STRUCT_TYPEDEF, r'''
220 assert not re.search(RE_STRUCT_TYPEDEF, false_positive, re.MULTILINE)
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/
H A Dtest_functional_basic.py63 …self.assertTrue(re.search("Custom images",self.driver.find_element(By.XPATH, "//div[@class='col-md…
84 …self.assertTrue(re.search("Compatible machines",self.driver.find_element(By.XPATH, "//div[@class='…
91 …self.assertTrue(re.search("Compatible layers",self.driver.find_element(By.XPATH, "//div[@class='co…
98 …self.assertTrue(re.search("Bitbake variables",self.driver.find_element(By.XPATH, "//div[@class='co…
111 …self.assertTrue(re.search("qemux86-64",self.driver.find_element(By.XPATH, "//span[@id='project-mac…
125 …self.assertTrue(re.search("Yocto Project master",self.driver.find_element(By.XPATH, "//span[@id='p…
131 …self.assertTrue(re.search("3",self.driver.find_element(By.ID, "project-layers-count").text),'There…
155 …self.assertTrue(re.search("qemux86-64",self.driver.find_element(By.ID, "project-machine-name").tex…
171 …self.assertTrue(re.search("You haven't built any recipes yet",self.driver.find_element(By.ID, "no-…
186 …self.assertTrue(re.search("Yocto Project master",self.driver.find_element(By.ID, "project-release-…
[all …]
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dsearch.py19 def search(args, config, basepath, workspace): function
48 if keyword_rc.search(fn):
58 if keyword_rc.search(pkg):
70 if keyword_rc.search(value):
84 if keyword_rc.search(recipe.pn):
88 if keyword_rc.search(prov):
93 if keyword_rc.search(rprov):
109 parser_search.set_defaults(func=search, no_workspace=True, fixed_setup=context.fixed_setup)
/openbmc/phosphor-webui/app/server-health/controllers/
H A Dinventory-overview-controller.js34 var search =
36 if (event.keyCode === 13 && search.length >= 2) {
39 if (search.length == 0) {
46 var search =
48 if (search.length >= 2) {
51 if (search.length == 0) {
H A Dsensors-overview-controller.js40 var search =
42 if (event.keyCode === 13 && search.length >= 2) {
45 if (search.length == 0) {
52 var search =
54 if (search.length >= 2) {
57 if (search.length == 0) {
H A Dsyslog-controller.js88 var search =
90 if (event.keyCode === 13 && search.length >= 2) {
93 if (search.length == 0) {
100 var search =
102 if (search.length >= 2) {
105 if (search.length == 0) {
/openbmc/linux/scripts/
H A Ddocumentation-file-ref-check199 my $search = $new;
200 $search =~ s,^.*/,,;
201 $f = qx(find Documentation/devicetree/ -iname "*$search*") if ($search);
204 $search =~ s/^.*,//;
205 $f = qx(find Documentation/devicetree/ -iname "*$search*") if ($search);
H A DMakefile.lib49 suffix-search = $(strip $(foreach s, $3, $($(1:%$(strip $2)=%$s))))
51 multi-search = $(sort $(foreach m, $1, $(if $(call suffix-search, $m, $2, $3 -), $m)))
53 real-search = $(foreach m, $1, $(if $(call suffix-search, $m, $2, $3 -), $(call suffix-search, $m, …
56 multi-obj-y := $(call multi-search, $(obj-y), .o, -objs -y)
57 multi-obj-m := $(call multi-search, $(obj-m), .o, -objs -y -m)
62 real-obj-y := $(call real-search, $(obj-y), .o, -objs -y)
63 real-obj-m := $(call real-search, $(obj-m), .o, -objs -y -m)
83 multi-dtb-y := $(call multi-search, $(dtb-y), .dtb, -dtbs)
85 real-dtb-y := $(call real-search, $(dtb-y), .dtb, -dtbs)
110 $(if $(filter $*.o, $(call suffix-search, $m, .o, -objs -y -m)),$(m:.o=))))
[all …]
/openbmc/webui-vue/tests/unit/Global/__snapshots__/
H A DSearch.spec.js.snap5 class="search-global"
17 global.form.search
30 class="search-icon"
46 aria-label="global.form.search"
47 class="search-input form-control"
49 placeholder="global.form.search"
/openbmc/linux/drivers/md/bcache/
H A Drequest.c489 struct search *s = container_of(cl, struct search, cl); in bch_cache_read_endio() argument
515 struct search *s = container_of(op, struct search, op); in cache_lookup_fn()
626 struct search *s = container_of(cl, struct search, cl); in request_endio()
642 struct search *s = container_of(cl, struct search, cl); in backing_request_endio()
703 struct search *s = container_of(cl, struct search, cl); in search_free()
754 struct search *s = container_of(cl, struct search, cl); in cached_dev_bio_complete()
765 struct search *s = container_of(cl, struct search, cl); in cached_dev_read_error_done()
778 struct search *s = container_of(cl, struct search, cl); in cached_dev_read_error()
806 struct search *s = container_of(cl, struct search, cl); in cached_dev_cache_miss_done()
821 struct search *s = container_of(cl, struct search, cl); in cached_dev_read_done()
[all …]
/openbmc/linux/arch/alpha/kernel/
H A Dgct.c14 gct6_find_nodes(gct6_node *node, gct6_search_struct *search) in gct6_find_nodes() argument
26 for (wanted = search; in gct6_find_nodes()
41 status |= gct6_find_nodes(GCT_NODE_PTR(node->next), search); in gct6_find_nodes()
45 status |= gct6_find_nodes(GCT_NODE_PTR(node->child), search); in gct6_find_nodes()
/openbmc/linux/scripts/coccinelle/free/
H A Dput_device.cocci12 @search exists@
40 p1 << search.p1;
41 p2 << search.p2;
50 p1 << search.p1;
51 p2 << search.p2;
H A Dpci_free_consistent.cocci13 @search@
39 p1 << search.p1;
40 p2 << search.p2;
47 p1 << search.p1;
48 p2 << search.p2;
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dlogparser.py44 result = section_regex['begin'].search(line)
51 result = section_regex['end'].search(line)
62 result = section_regex['timeout'].search(line)
70 result = section_regex[t].search(line)
78 result = test_regex[t].search(line)
170 regex_result = section_regex['test'].search(line)
174 regex_result = test_regex['FAILED'].search(line)
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/
H A Dbootstrap3-transition.css61 /* Table search input field */
63 .navbar-search {
67 .navbar-search .input-append {
71 .navbar-search .input-append input[type="text"] {
75 #search {
91 .navbar-inner > .navbar-search .input-append {
95 .navbar-search.input-append {
/openbmc/linux/tools/net/ynl/
H A Dynl-regen.sh7 search=
12 -p ) search=$2; shift 2 ;;
18 pushd ${search:-$KDIR} >>/dev/null
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fontforge/fontforge/
H A D0001-Fix-Translations-containing-invalid-directives-hs.patch51 -"The %1$s in the search dialog contains a reference to %2$.20hs which does "
52 +"The %1$s in the search dialog contains a reference to %2$.20s which does "
69 -"The %1$s in the search dialog contains a reference to %2$.20hs which does "
70 +"The %1$s in the search dialog contains a reference to %2$.20s which does "
87 -"The %1$s in the search dialog contains a reference to %2$.20hs which does "
88 +"The %1$s in the search dialog contains a reference to %2$.20s which does "
93 +"The %1$s in the search dialogue contains a reference to %2$.20s which does "
132 -"The %1$s in the search dialog contains a reference to %2$.20hs which does "
133 +"The %1$s in the search dialog contains a reference to %2$.20s which does "
202 "Shall I use that or let you search?"
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dbbtests.py45 …find_build_started = re.search(r"NOTE: Test for bb\.event\.BuildStarted(\n.*)*NOTE: Executing.*Tas…
46 …find_build_completed = re.search(r"Tasks Summary:.*(\n.*)*NOTE: Test for bb\.event\.BuildCompleted…
55 find_setscene = re.search("selftest-hello-native.*do_.*_setscene", result.output)
68 … find_warnings = re.search("Summary: There w.{2,3}? [1-9][0-9]* WARNING messages*", result.output)
69 … find_errors = re.search("Summary: There w.{2,3}? [1-9][0-9]* ERROR messages*", result.output)
187 find = re.search(r"wget *:([0-9a-zA-Z\.\-]+)", result.output)
230 …manver = re.search("NOTE: recipe xcursor-transparent-theme-(.*?): task do_unpack: Started", result…
321 gitscm = re.search("git://", src)
324 … fatal = re.search("fatal: not a git repository (or any of the parent directories)", result.output)
334 gitscm = re.search("git://", src)
[all …]
/openbmc/phosphor-debug-collector/
H A Delog_watch.cpp86 auto search = elogList.find(eId); in addCallback() local
87 if (search != elogList.end()) in addCallback()
176 auto search = elogList.find(eId); in delCallback() local
177 if (search != elogList.end()) in delCallback()
179 elogList.erase(search); in delCallback()
/openbmc/pldm/fw-update/
H A Dupdate_manager.cpp148 auto search = componentInfoMap.find(deviceUpdaterInfo.first); in processPackage() local
153 compImageInfos, search->second, MAXIMUM_TRANSFER_SIZE, this)); in processPackage()
223 auto search = deviceUpdaterMap.find(eid); in handleRequest() local
226 return search->second->requestFwData(request, reqMsgLen); in handleRequest()
230 return search->second->transferComplete(request, reqMsgLen); in handleRequest()
234 return search->second->verifyComplete(request, reqMsgLen); in handleRequest()
238 return search->second->applyComplete(request, reqMsgLen); in handleRequest()
/openbmc/openbmc/meta-security/lib/oeqa/runtime/cases/
H A Dapparmor.py23 match = re.search('apparmor module is loaded.', output)
32 match = re.search('apparmor module is loaded.', output)
41 match = re.search('apparmor module is loaded.', output)

12345678910>>...32