| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | ordered-events.c | 18 static void queue_event(struct ordered_events *oe, struct ordered_event *new) in queue_event() argument 20 struct ordered_event *last = oe->last; in queue_event() 24 ++oe->nr_events; in queue_event() 25 oe->last = new; in queue_event() 27 pr_oe_time2(timestamp, "queue_event nr_events %u\n", oe->nr_events); in queue_event() 30 list_add(&new->list, &oe->events); in queue_event() 31 oe->max_timestamp = timestamp; in queue_event() 43 if (p == &oe->events) { in queue_event() 44 list_add_tail(&new->list, &oe->events); in queue_event() 45 oe->max_timestamp = timestamp; in queue_event() [all …]
|
| H A D | ordered-events.h | 27 typedef int (*ordered_events__deliver_t)(struct ordered_events *oe, 55 int ordered_events__queue(struct ordered_events *oe, union perf_event *event, 57 void ordered_events__delete(struct ordered_events *oe, struct ordered_event *event); 58 int ordered_events__flush(struct ordered_events *oe, enum oe_flush how); 59 int ordered_events__flush_time(struct ordered_events *oe, u64 timestamp); 60 void ordered_events__init(struct ordered_events *oe, ordered_events__deliver_t deliver, 62 void ordered_events__free(struct ordered_events *oe); 63 void ordered_events__reinit(struct ordered_events *oe); 64 u64 ordered_events__first_time(struct ordered_events *oe); 67 void ordered_events__set_alloc_size(struct ordered_events *oe, u64 size) in ordered_events__set_alloc_size() argument [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-core/packagegroups/ |
| H A D | packagegroup-meta-oe.bb | 1 SUMMARY = "Meta-oe ptest packagegroups" 8 packagegroup-meta-oe \ 9 packagegroup-meta-oe-benchmarks \ 10 packagegroup-meta-oe-connectivity \ 11 packagegroup-meta-oe-connectivity-python2 \ 12 packagegroup-meta-oe-core \ 13 packagegroup-meta-oe-crypto \ 14 packagegroup-meta-oe-bsp \ 15 packagegroup-meta-oe-dbs \ 16 packagegroup-meta-oe-dbs-python2 \ [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/grpc/grpc/ |
| H A D | 0001-Revert-Changed-GRPCPP_ABSEIL_SYNC-to-GPR_ABSEIL_SYNC.patch | 9 Fixes sysdig from meta-oe and other recipes (like com.webos.service.tts 13 | : && /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot-native/us… 14 …OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -O2 -pipe -g -f… 15 …OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0=/usr/src/debug/sysdig/0.27.1-r0… 16 …oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot-native= -fvisibility-inl… 17 /oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -Wall -ggdb -std=c++0x … 18 …OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -O2 -pipe -g -f… 19 …OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0=/usr/src/debug/sysdig/0.27.1-r0… 20 …oe-linux/sysdig/0.27.1-r0/recipe-sysroot-native= -fvisibility-inlines-hidden -m64 -march=core2 -… 21 …oe-linux/sysdig/0.27.1-r0/recipe-sysroot -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fmacro-pref… [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | liboe.py | 7 import oe.path 19 Summary: oe.path.copytree() should copy files with special character 22 Product: OE-Core 25 testloc = oe.path.join(self.tmp_dir, 'liboetests') 26 src = oe.path.join(testloc, 'src') 27 dst = oe.path.join(testloc, 'dst') 33 open(oe.path.join(src, testfilename), 'w+b').close() 34 oe.path.copytree(src, dst) 37 fileindst = os.path.isfile(oe.path.join(dst, testfilename)) 40 oe.path.remove(testloc) [all …]
|
| H A D | pkgdata.py | 24 result = runCmd('oe-pkgdata-util lookup-pkg "zlib busybox"') 26 result = runCmd('oe-pkgdata-util lookup-pkg zlib-dev') 28 result = runCmd('oe-pkgdata-util lookup-pkg nonexistentpkg', ignore_status=True) 32 result = runCmd('oe-pkgdata-util lookup-pkg -r "libz1 busybox"') 34 result = runCmd('oe-pkgdata-util lookup-pkg -r libz-dev') 36 result = runCmd('oe-pkgdata-util lookup-pkg -r nonexistentpkg', ignore_status=True) 41 result = runCmd('oe-pkgdata-util read-value PN libz1') 43 result = runCmd('oe-pkgdata-util read-value PKG libz1') 45 result = runCmd('oe-pkgdata-util read-value PKGSIZE m4') 50 result = runCmd('oe-pkgdata-util find-path /lib/libz.so.1') [all …]
|
| H A D | distrodata.py | 7 import oe.recipeutils 15 Product: oe-core 21 pkgs = oe.recipeutils.get_recipe_upgrade_status() 42 Summary: Test for oe-core recipes that don't have a HOMEPAGE or DESCRIPTION 43 Expected: All oe-core recipes should have a DESCRIPTION entry 44 …Expected: All oe-core recipes should have a HOMEPAGE entry except for recipes that are not fetc… 45 Product: oe-core 53 # We are only interested in OE-Core 78 …Summary: Test that oe-core recipes have a maintainer and entries in maintainers list have a re… 79 …Expected: All oe-core recipes (except a few special static/testing ones) should have a maintain… [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/conf/distro/include/ |
| H A D | distro_alias.inc | 4 # name is the major distribution equivalent to the name used in oe-core 12 DISTRO_PN_ALIAS:pn-alsa-state = "OE-Core" 13 DISTRO_PN_ALIAS:pn-alsa-utils-alsaconf = "OE-Core" 14 DISTRO_PN_ALIAS:pn-alsa-utils-scripts = "OE-Core" 25 DISTRO_PN_ALIAS:pn-builder = "OE-Core" 26 DISTRO_PN_ALIAS:pn-buildtools-tarball = "OE-Core" 30 DISTRO_PN_ALIAS:pn-connman-conf = "OE-Core" 33 DISTRO_PN_ALIAS:pn-core-image-base = "OE-Core" 34 DISTRO_PN_ALIAS:pn-core-image-full-cmdline = "OE-Core" 35 DISTRO_PN_ALIAS:pn-core-image-kernel-dev = "OE-Core" [all …]
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/ |
| H A D | qtbase_git.bb | 19 file://0001-Add-linux-oe-g-platform.patch \ 27 file://0009-Add-OE-specific-specs-for-clang-compiler.patch \ 162 …OE @ ~/build/oe-core/tmp-glibc/work/i586-oe-linux/qtbase/5.9.0+gitAUTOINC+f6b36eaafe-r0/build/test… 167 …OE @ ~/build/oe-core/tmp-glibc/work/i586-oe-linux/qtbase/5.9.0+gitAUTOINC+f6b36eaafe-r0/build/test… 170 …OE @ ~/build/oe-core/tmp-glibc/work/i586-oe-linux/qtbase/5.9.0+gitAUTOINC+f6b36eaafe-r0/build/test… 178 # /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/qtbase/5.12.3+gitAUTOINC+b527725766-r0/recipe-… 208 XPLATFORM:toolchain-clang = "linux-oe-clang" 209 XPLATFORM ?= "linux-oe-g++" 222 …# Avoid qmake error "Cannot read [...]/usr/lib/qt5/mkspecs/oe-device-extra.pri: No such file or di… 223 touch ${S}/mkspecs/oe-device-extra.pri [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/oelib/ |
| H A D | elf.py | 6 import oe.qa 13 self.assertEqual(oe.qa.elf_machine_to_string(0x02), "SPARC") 14 self.assertEqual(oe.qa.elf_machine_to_string(0x03), "x86") 15 self.assertEqual(oe.qa.elf_machine_to_string(0x08), "MIPS") 16 self.assertEqual(oe.qa.elf_machine_to_string(0x14), "PowerPC") 17 self.assertEqual(oe.qa.elf_machine_to_string(0x28), "ARM") 18 self.assertEqual(oe.qa.elf_machine_to_string(0x2A), "SuperH") 19 self.assertEqual(oe.qa.elf_machine_to_string(0x32), "IA-64") 20 self.assertEqual(oe.qa.elf_machine_to_string(0x3E), "x86-64") 21 self.assertEqual(oe.qa.elf_machine_to_string(0xB7), "AArch64") [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | create-spdx.bbclass | 16 SPDX_TOOL_NAME ??= "oe-spdx-creator" 64 annotation = oe.spdx.SPDXAnnotation() 98 import oe.spdx 109 extracted_info = oe.spdx.SPDXExtractedLicensingInfo() 198 import oe.spdx 219 spdx_file = oe.spdx.SPDXFile() 241 spdx_file.checksums.append(oe.spdx.SPDXChecksum( 245 spdx_file.checksums.append(oe.spdx.SPDXChecksum( 275 import oe.packagedata 276 import oe.spdx [all …]
|
| H A D | insane.bbclass | 98 …oe.qa.add_message(messages, "shebang-size", "%s: %s maximum shebang size exceeded, the maximum siz… 110 …oe.qa.add_message(messages, "libexec", "%s: %s is using libexec please relocate to %s" % (name, pa… 138 …oe.qa.add_message(messages, "rpaths", "package %s contains bad RPATH %s in file %s" % (name, rpath… 168 …oe.qa.add_message(messages, "useless-rpaths", "%s: %s contains probably-redundant RPATH %s" % (nam… 177 …oe.qa.add_message(messages, "dev-so", "non -dev/-dbg/nativesdk- package %s contains symlink .so '%… 188 oe.qa.add_message(messages, "dev-elf", "-dev package %s contains non-symlink .so '%s'" % \ 201 …oe.qa.add_message(messages, "staticdev", "non -staticdev package contains static .a library: %s pa… 212 …oe.qa.add_message(messages, "mime", "package contains mime types but does not inherit mime: %s pat… 239 oe.qa.add_message(messages, "mime-xdg", wstr) 241 …oe.qa.add_message(messages, "mime-xdg", "package contains desktop file with key 'MimeType' but doe… [all …]
|
| H A D | patch.bbclass | 16 PATCH_GIT_USER_EMAIL ?= "oe.patch@oe" 63 import oe.patch 81 oe.patch.GitApplyTree.gitCommandUserOptions(useroptions, d=d) 82 … -a -m "Committing changes from %s\n\n%s"' % (' '.join(useroptions), func, oe.patch.GitApplyTree.i… 86 import oe.patch 87 return oe.patch.src_patches(d, all, expand) 91 import oe.patch 92 return oe.patch.should_apply(parm, d) 97 import oe.patch 100 "patch": oe.patch.PatchTree, [all …]
|
| H A D | prexport.bbclass | 16 import oe.prservice 20 retval = oe.prservice.prserv_dump_db(e.data) 27 oe.prservice.prserv_export_tofile(e.data, None, datainfo, False) 33 retval = oe.prservice.prserv_dump_db(e.data) 37 oe.prservice.prserv_export_tofile(e.data, None, datainfo, False) 40 import oe.prservice 41 oe.prservice.prserv_check_avail(e.data) 45 import oe.prservice 49 retval = oe.prservice.prserv_dump_db(d) 54 oe.prservice.prserv_export_tofile(d, metainfo, None, True)
|
| H A D | terminal.bbclass | 13 import oe.terminal 14 return " ".join(o.name for o in oe.terminal.prioritized()) 41 import oe.data 42 import oe.terminal 50 for export in oe.data.typed_value('OE_TERMINAL_EXPORTS', d): 85 terminal = oe.data.typed_value('OE_TERMINAL', d).lower() 90 oe.terminal.spawn(terminal, command, title, None, d) 92 except oe.terminal.UnsupportedTerminal: 95 except oe.terminal.ExecutionError as exc: 99 oe.terminal.spawn_preferred(command, title, None, d) [all …]
|
| H A D | copyleft_filter.bbclass | 37 for recipe_type in oe.data.typed_value('COPYLEFT_AVAILABLE_RECIPE_TYPES', d): 38 if oe.utils.inherits(d, recipe_type): 47 import oe.license 51 if recipe_type not in oe.data.typed_value('COPYLEFT_RECIPE_TYPES', d): 56 include = oe.data.typed_value('COPYLEFT_LICENSE_INCLUDE', d) 57 exclude = oe.data.typed_value('COPYLEFT_LICENSE_EXCLUDE', d) 60 is_included, reason = oe.license.is_included(d.getVar('LICENSE'), include, exclude) 61 except oe.license.LicenseError as exc: 73 for name in oe.data.typed_value('COPYLEFT_PN_INCLUDE', d)): 76 for name in oe.data.typed_value('COPYLEFT_PN_EXCLUDE', d)):
|
| H A D | license_image.bbclass | 7 if not oe.data.typed_value('LICENSE_CREATE_PACKAGE', d): 8 features = set(oe.data.typed_value('IMAGE_FEATURES', d)) 17 from oe.rootfs import image_list_installed_packages 18 from oe.utils import format_pkg_list 27 import oe.packagedata 28 from oe.rootfs import image_list_installed_packages 40 pkg_dic[pkg_name] = oe.packagedata.read_pkgdatafile(pkg_info) 60 … remaining_bad_licenses = oe.license.apply_pkg_license_exception(pkg, bad_licenses, exceptions) 67 …oe.qa.handle_error('license-incompatible', "Including %s with incompatible license(s) %s into the … 70 oe.license.manifest_licenses(pkg_dic[pkg]["LICENSE"], [all …]
|
| /OK3568_Linux_fs/kernel/fs/omfs/ |
| H A D | file.c | 22 struct omfs_extent *oe = (struct omfs_extent *) &bh->b_data[offset]; in omfs_make_empty_table() local 24 oe->e_next = ~cpu_to_be64(0ULL); in omfs_make_empty_table() 25 oe->e_extent_count = cpu_to_be32(1), in omfs_make_empty_table() 26 oe->e_fill = cpu_to_be32(0x22), in omfs_make_empty_table() 27 oe->e_entry.e_cluster = ~cpu_to_be64(0ULL); in omfs_make_empty_table() 28 oe->e_entry.e_blocks = ~cpu_to_be64(0ULL); in omfs_make_empty_table() 34 struct omfs_extent *oe; in omfs_shrink_inode() local 56 oe = (struct omfs_extent *)(&bh->b_data[OMFS_EXTENT_START]); in omfs_shrink_inode() 64 extent_count = be32_to_cpu(oe->e_extent_count); in omfs_shrink_inode() 70 next = be64_to_cpu(oe->e_next); in omfs_shrink_inode() [all …]
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtbase/ |
| H A D | 0009-Add-OE-specific-specs-for-clang-compiler.patch | 4 Subject: [PATCH] Add OE specific specs for clang compiler 9 mkspecs/linux-oe-clang/qmake.conf | 40 ++++++++++++++++++++++++++ 10 mkspecs/linux-oe-clang/qplatformdefs.h | 1 + 12 create mode 100644 mkspecs/linux-oe-clang/qmake.conf 13 create mode 100644 mkspecs/linux-oe-clang/qplatformdefs.h 15 diff --git a/mkspecs/linux-oe-clang/qmake.conf b/mkspecs/linux-oe-clang/qmake.conf 19 +++ b/mkspecs/linux-oe-clang/qmake.conf 57 +include(../oe-device-extra.pri) 61 diff --git a/mkspecs/linux-oe-clang/qplatformdefs.h b/mkspecs/linux-oe-clang/qplatformdefs.h 65 +++ b/mkspecs/linux-oe-clang/qplatformdefs.h
|
| /OK3568_Linux_fs/u-boot/drivers/pinctrl/ |
| H A D | pinctrl-sti.c | 23 #define OE (1 << 27) macro 30 /* oe = 0, pu = 0, od = 0 */ 32 /* oe = 0, pu = 1, od = 0 */ 34 /* oe = 1, pu = 0, od = 0 */ 35 #define OUT (OE) 36 /* oe = 1, pu = 1, od = 0 */ 37 #define OUT_PU (OE | PU) 38 /* oe = 1, pu = 0, od = 1 */ 39 #define BIDIR (OE | OD) 40 /* oe = 1, pu = 1, od = 1 */ [all …]
|
| /OK3568_Linux_fs/yocto/meta-browser/meta-firefox/recipes-browser/firefox/firefox/fixes/ |
| H A D | 0004-Fix-build-with-gcc-11.patch | 8 …0:26.15 /OE/build/test-oe-build-time/poky/build/tmp/work/core2-64-poky-linux/firefox/68.9.0esr-r0/… 11 …0:26.15 /OE/build/test-oe-build-time/poky/build/tmp/work/core2-64-poky-linux/firefox/68.9.0esr-r0/… 14 …0:26.17 /OE/build/test-oe-build-time/poky/build/tmp/work/core2-64-poky-linux/firefox/68.9.0esr-r0/… 17 …0:26.17 /OE/build/test-oe-build-time/poky/build/tmp/work/core2-64-poky-linux/firefox/68.9.0esr-r0/… 20 …0:26.17 /OE/build/test-oe-build-time/poky/build/tmp/work/core2-64-poky-linux/firefox/68.9.0esr-r0/… 23 …0:26.18 /OE/build/test-oe-build-time/poky/build/tmp/work/core2-64-poky-linux/firefox/68.9.0esr-r0/…
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/glide/ |
| H A D | glide_0.13.3.bb | 24 # ERROR: QA Issue: ELF binary '/work/i586-oe-linux/glide/0.13.1-r0/packages-split/glide/usr/bin/gli… 29 # ERROR: QA Issue: ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/us… 30 # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest… 31 # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest… 32 # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest… 33 # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest… 34 # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest… 35 # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest… 36 # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest… 37 # ELF binary '/work/aarch64-oe-linux/glide/0.13.1-r0/packages-split/glide-ptest/usr/lib/glide/ptest… [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | st-pincfg.h | 15 #define OE (1 << 27) macro 30 /* oe = 0, pu = 0, od = 0 */ 32 /* oe = 0, pu = 1, od = 0 */ 34 /* oe = 1, pu = 0, od = 0 */ 35 #define OUT (OE) 36 /* oe = 1, pu = 0, od = 1 */ 37 #define BIDIR (OE | OD) 38 /* oe = 1, pu = 1, od = 1 */ 39 #define BIDIR_PU (OE | PU | OD)
|
| /OK3568_Linux_fs/u-boot/arch/arm/dts/ |
| H A D | st-pincfg.h | 14 #define OE (1 << 27) macro 29 /* oe = 0, pu = 0, od = 0 */ 31 /* oe = 0, pu = 1, od = 0 */ 33 /* oe = 1, pu = 0, od = 0 */ 34 #define OUT (OE) 35 /* oe = 1, pu = 0, od = 1 */ 36 #define BIDIR (OE | OD) 37 /* oe = 1, pu = 1, od = 1 */ 38 #define BIDIR_PU (OE | PU | OD)
|
| /OK3568_Linux_fs/kernel/include/net/tc_act/ |
| H A D | tc_gate.h | 116 struct action_gate_entry *oe; in tcf_gate_get_list() local 131 oe = kcalloc(num_entries, sizeof(*oe), GFP_ATOMIC); in tcf_gate_get_list() 132 if (!oe) in tcf_gate_get_list() 137 oe[i].gate_state = entry->gate_state; in tcf_gate_get_list() 138 oe[i].interval = entry->interval; in tcf_gate_get_list() 139 oe[i].ipv = entry->ipv; in tcf_gate_get_list() 140 oe[i].maxoctets = entry->maxoctets; in tcf_gate_get_list() 144 return oe; in tcf_gate_get_list()
|