/openbmc/telemetry/tests/src/ |
H A D | dbus_environment.hpp | 44 static T waitForFutures(std::vector<std::future<T>> futures, T init, in waitForFutures() 52 for (auto& future : futures) in waitForFutures() local 54 while (future.valid() && elapsed < timeout) in waitForFutures() 58 if (future.wait_for(precission) == std::future_status::ready) in waitForFutures() 60 sum = accumulator(sum, future.get()); in waitForFutures() 78 static T waitForFuture(std::future<T> future, in waitForFuture() argument 81 std::vector<std::future<T>> futures; in waitForFuture() 82 futures.emplace_back(std::move(future)); in waitForFuture() 122 auto future = promise.get_future(); in setProperty() local 130 return DbusEnvironment::waitForFuture(std::move(future)); in setProperty() [all …]
|
H A D | dbus_environment.cpp | 78 data = std::vector<std::future<bool>>{}; in waitForFutures() 82 std::future<bool> DbusEnvironment::getFuture(std::string_view name) in getFuture() 122 std::map<std::string, std::vector<std::future<bool>>> DbusEnvironment::futures;
|
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/aufs-util/aufs-util/ |
H A D | aufs-util-don-t-strip-executables.patch | 9 …WARNING: File '/sbin/mount.aufs' from aufs-util was already stripped, this will prevent future deb… 10 …WARNING: File '/sbin/auplink' from aufs-util was already stripped, this will prevent future debugg… 11 …WARNING: File '/sbin/umount.aufs' from aufs-util was already stripped, this will prevent future de… 12 …WARNING: File '/sbin/auibusy' from aufs-util was already stripped, this will prevent future debugg… 13 …le '/usr/lib/libau.so.2.6' from aufs-util was already stripped, this will prevent future debugging!
|
/openbmc/linux/Documentation/filesystems/smb/ |
H A D | ksmbd.rst | 76 Directory leases(v2 lease) Planned for future. 87 replay/retry mechanisms for future. 91 (auditing) is planned for the future. For 98 to allow future support for running as a domain 101 Durable handle v1,v2 Planned for future. 102 Persistent handle Planned for future. 103 SMB2 notify Planned for future. 111 DCE/RPC management calls (and future support 113 ksmbd/nfsd interoperability Planned for future. The features that ksmbd
|
/openbmc/openpower-debug-collector/dump/ |
H A D | sbe_dump_collector.cpp | 106 for (auto& future : futures) in collectDump() local 110 future.wait(); in collectDump() 137 std::vector<std::future<void>> SbeDumpCollector::spawnDumpCollectionProcesses( in spawnDumpCollectionProcesses() 141 std::vector<std::future<void>> futures; in spawnDumpCollectionProcesses() 145 auto future = std::async(std::launch::async, [this, procTarget, in spawnDumpCollectionProcesses() local 183 futures.push_back(std::move(future)); in spawnDumpCollectionProcesses()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/openldap/openldap/ |
H A D | 0001-build-top.mk-unset-STRIP_OPTS.patch | 10 prevent future debugging! [already-stripped] 14 prevent future debugging! [already-stripped]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | gdbserver.py | 62 future = executor.submit(run_gdb) 67 future.result()
|
/openbmc/openbmc-tools/sensor_yaml_config/ |
H A D | README.md | 5 future when the code update is refactored. 30 future:
|
/openbmc/linux/Documentation/arch/x86/x86_64/ |
H A D | cpu-hotplug-spec.rst | 16 For CPU hotplug Linux/x86-64 expects now that any possible future hotpluggable 19 of disabled LAPICs to compute the maximum number of future CPUs.
|
/openbmc/linux/Documentation/driver-api/surface_aggregator/clients/ |
H A D | dtx.rst | 186 Other categories are reserved for future use. The ``SDTX_CATEGORY()`` macro 193 future. 231 Other error codes are reserved for future use. Non-error status codes may 272 Again, other codes are reserved for future use. 283 |sdtx_event_code|. Note that other event codes are reserved for future use, 355 Other error codes in this context are reserved for future use. 406 Other values are reserved for future use. 434 Other values are reserved for future use. 460 Other values are reserved for future use. 647 Other values are reserved for future use. [all …]
|
/openbmc/linux/Documentation/userspace-api/media/mediactl/ |
H A D | media-ioc-enum-links.rst | 80 - Reserved for future extensions. Drivers and applications must set 106 - Reserved for future extensions. Drivers and applications must set 133 - Reserved for future extensions. Drivers and applications must set
|
/openbmc/openbmc/poky/meta/recipes-support/libpcre/ |
H A D | libpcre2_10.44.bb | 4 deployed PCRE library's API and feature are stable, future releases \ 5 will be for bugfixes only. All new future features will be to PCRE2, \
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | dev-radio.rst | 25 capability flags are reserved for future extensions. 37 reserved for future extensions.
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gradm/gradm/ |
H A D | 0001-Makefile-remove-strip.patch | 10 this will prevent future debugging! [already-stripped] 12 this will prevent future debugging! [already-stripped]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-bsp/pointercal/pointercal/ |
H A D | COPYING | 1 This is a blank COPYING file, and should be filled in by original author in future.
|
/openbmc/linux/tools/tracing/latency/ |
H A D | latency-collector.c | 513 static __always_inline void get_time_in_future(struct timespec *future, in get_time_in_future() argument 518 clock_gettime_or_die(CLOCK_MONOTONIC, future); in get_time_in_future() 519 future->tv_sec += time_us / USEC_PER_SEC; in get_time_in_future() 520 nsec = future->tv_nsec + (time_us * NSEC_PER_USEC) % NSEC_PER_SEC; in get_time_in_future() 522 future->tv_nsec = nsec % NSEC_PER_SEC; in get_time_in_future() 523 future->tv_sec += 1; in get_time_in_future() 1011 struct timespec future; in go_to_sleep() local 1014 get_time_in_future(&future, delay); in go_to_sleep() 1018 cond_timedwait(&printstate.cond, &printstate.mutex, &future); in go_to_sleep() 1019 if (time_has_passed(&future)) in go_to_sleep()
|
/openbmc/openbmc-test-automation/lib/ |
H A D | certificate_utils.robot | 224 ... Modify BMC Date future 277 Run Keyword If '${cert_format}' == 'Expired Certificate' Modify BMC Date future 301 # date_set_type Set BMC date to a current, future, old date by 375 days. 303 # future - Sets to a future date from current date. 309 ... ELSE IF '${date_set_type}' == 'future'
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | CC0-1.0 | 22 …future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the ma… 24 … provided by applicable law or treaty (including future time extensions), (iii) in any current or …
|
/openbmc/linux/tools/testing/selftests/resctrl/ |
H A D | settings | 2 # the future, increase timeout here.
|
/openbmc/linux/Documentation/riscv/ |
H A D | boot-image-header.rst | 26 header in future. 47 - The "magic" field is deprecated as of version 0.2. In a future
|
/openbmc/libbej/ |
H A D | README.md | 4 library will be added in the future.
|
/openbmc/linux/drivers/staging/rts5208/ |
H A D | TODO | 5 rts5208/5288 in the future
|
/openbmc/openbmc/meta-security/meta-integrity/recipes-core/packagegroups/ |
H A D | packagegroup-ima-evm-utils.bb | 8 # Only one at the moment, but perhaps more will come in the future.
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
H A D | python3-future_1.0.0.bb | 2 HOMEPAGE = "https://python-future.org"
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-connectivity/python-pyconnman/ |
H A D | python3-pyconnman_0.2.0.bb | 11 RDEPENDS:${PN} = "connman python3-dbus python3-pprint python3-future"
|