/openbmc/libpldm/src/msgbuf/ |
H A D | core.h | 71 intmax_t remaining; member 76 intmax_t remaining; member 82 intmax_t remaining LIBPLDM_CC_UNUSED) in pldm__msgbuf_cleanup() 84 assert(cursor == NULL && remaining == INTMAX_MIN); in pldm__msgbuf_cleanup() 92 pldm__msgbuf_cleanup((const void *)ctx->cursor, ctx->remaining); in pldm__msgbuf_rw_cleanup() 100 pldm__msgbuf_cleanup((const void *)ctx->cursor, ctx->remaining); in pldm__msgbuf_ro_cleanup() 106 int pldm__msgbuf_set_invalid(intmax_t *remaining) in pldm__msgbuf_set_invalid() argument 108 *remaining = INTMAX_MIN; in pldm__msgbuf_set_invalid() 117 return pldm__msgbuf_set_invalid(&ctx->remaining); in pldm__msgbuf_rw_invalidate() 125 return pldm__msgbuf_set_invalid(&ctx->remaining); in pldm__msgbuf_ro_invalidate() [all …]
|
/openbmc/phosphor-watchdog/test/ |
H A D | watchdog.cpp | 126 auto remaining = milliseconds(wdog->timeRemaining()); in TEST_F() local 130 EXPECT_TRUE((remaining >= defaultInterval - Quantum(1)) && in TEST_F() 131 (remaining <= defaultInterval)); in TEST_F() 154 * Wait for 5 quantums and make sure that the remaining 167 // Get the remaining time again and expectation is that we get fewer in TEST_F() 168 auto remaining = milliseconds(wdog->timeRemaining()); in TEST_F() local 173 EXPECT_TRUE((remaining >= expected - Quantum(1)) && in TEST_F() 174 (remaining <= expected)); in TEST_F() 226 auto remaining = milliseconds(wdog->timeRemaining()); in TEST_F() local 227 EXPECT_GE(oldInterval, remaining); in TEST_F() [all …]
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | extrausers.bbclass | 33 remaining=`echo $user_group_settings | cut -d ';' -f2-` 66 if [ "$setting" = "$remaining" ]; then 70 setting=`echo $remaining | cut -d ';' -f1` 71 remaining=`echo $remaining | cut -d ';' -f2-`
|
H A D | useradd.bbclass | 61 remaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` 64 if test "x$opts" = "x$remaining"; then 67 opts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'` 68 remaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` 77 remaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` 80 if test "x$opts" = "x$remaining"; then 83 opts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'` 84 remaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` 93 remaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` 96 if test "x$opts" = "x$remaining"; then [all …]
|
/openbmc/openbmc/meta-phosphor/recipes-phosphor/initrdscripts/files/ |
H A D | obmc-shutdown.sh | 54 remaining=$(ls $image*) 55 if test -n "$remaining" 58 echo 1>&2 "$remaining" 73 # for the remaining shutdown work 82 echo Remaining mounts:
|
/openbmc/phosphor-bmc-code-mgmt/i2c-vr/mps/ |
H A D | mps.hpp | 86 Iterator(std::string_view sv) : remaining(sv) in Iterator() 116 return a.remaining.empty() && b.remaining.empty(); in operator ==() 125 std::string_view remaining; member 131 if (remaining.empty()) in next() 137 auto newlinePos = remaining.find('\n'); in next() 138 std::string_view line = remaining.substr(0, newlinePos); in next() 139 remaining = (newlinePos == std::string_view::npos) in next() 141 : remaining.substr(newlinePos + 1); in next()
|
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/ |
H A D | 0001-Fix-build-on-32bit.patch | 9 172 | std::min(size * nitems, static_cast<unsigned long>(bufReader->remaining())); 32 if (bufReader->remaining() > 0) { 34 - std::min(size * nitems, static_cast<unsigned long>(bufReader->remaining())); 35 + std::min(size * nitems, static_cast<size_t>(bufReader->remaining()));
|
/openbmc/libpldm/src/ |
H A D | utils.c | 141 ssize_t remaining; in ver2str() local 157 remaining = (ssize_t)buffer_size; in ver2str() 160 INSERT_INT(BCD_H(version->major), cursor, remaining) in ver2str() 161 INSERT_INT(BCD_L(version->major), cursor, remaining); in ver2str() 162 INSERT_CHAR('.', cursor, remaining); in ver2str() 165 INSERT_INT(BCD_H(version->minor), cursor, remaining); in ver2str() 166 INSERT_INT(BCD_L(version->minor), cursor, remaining); in ver2str() 169 INSERT_CHAR('.', cursor, remaining); in ver2str() 171 INSERT_INT(BCD_H(version->update), cursor, remaining); in ver2str() 172 INSERT_INT(BCD_L(version->update), cursor, remaining); in ver2str() [all …]
|
/openbmc/sdeventplus/src/sdeventplus/utility/ |
H A D | timer.hpp | 39 * interval or time remaining. 131 * @return The remaining time as an std::chrono::duration 147 * @param[in] remaining - The new amount of time left on the timer 150 void setRemaining(Duration remaining); 170 * time remaining is set to the new interval, and the timer is 180 * time remaining is set to the new remaining, and the timer is 186 void restartOnce(Duration remaining);
|
H A D | timer.cpp | 112 void Timer<Id>::setRemaining(Duration remaining) in setRemaining() argument 114 timeSource.set_time(userdata->clock.now() + remaining); in setRemaining() 150 void Timer<Id>::restartOnce(Duration remaining) in restartOnce() argument 155 setRemaining(remaining); in restartOnce()
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 044 | 79 remaining = img_file_size - off_data 82 while remaining > 1024 * 512: 87 remaining = remaining - 1024 * 512 91 for j in range(0, remaining // 512))
|
/openbmc/openbmc/poky/bitbake/lib/bb/pysh/ |
H A D | pyshlex.py | 141 delimited, return a tuple (expr, remaining) containing the expression 149 remaining = ''.join(self._buffer) 152 return result, remaining 368 remaining = token 374 pos, sep = find_chars(remaining, delimiters) 376 tree += [remaining, ''] 378 tree.append(remaining[:pos]) 379 remaining = remaining[pos:] 382 result, remaining = WordLexer(heredoc = here_document).add(remaining, True) 435 """If the here-document was delimited, return a tuple (content, remaining). [all …]
|
/openbmc/qemu/block/ |
H A D | parallels-ext.c | 190 int remaining = s->cluster_size; in parallels_parse_format_extension() local 200 remaining -= sizeof(eh); in parallels_parse_format_extension() 209 ret = qcrypto_hash_bytes(QCRYPTO_HASH_ALGO_MD5, (char *)pos, remaining, in parallels_parse_format_extension() 226 if (remaining < sizeof(fh)) { in parallels_parse_format_extension() 227 error_setg(errp, "Can not read feature header, as remaining bytes " in parallels_parse_format_extension() 229 "size (%zu)", remaining, sizeof(fh)); in parallels_parse_format_extension() 235 remaining -= sizeof(fh); in parallels_parse_format_extension() 246 if (fh.data_size > remaining) { in parallels_parse_format_extension()
|
/openbmc/entity-manager/src/fru_device/ |
H A D | fru_reader.cpp | 11 size_t remaining = len; in read() local 68 : std::min(available - blkOffset, remaining); in read() 74 remaining -= toCopy; in read()
|
/openbmc/phosphor-bmc-code-mgmt/bmc/ |
H A D | reset-cs0-aspeed | 26 sed -i "s/echo Remaining mounts/\/run\/initramfs\/shutdown_task_after_umount\\necho Remaining mount…
|
/openbmc/openpower-hw-diags/attn/ |
H A D | attn_common.cpp | 223 struct timespec requested, remaining; in sleepSeconds() local 229 remaining = requested; in sleepSeconds() 231 while (-1 == nanosleep(&requested, &remaining)) in sleepSeconds() 234 if (requested <= remaining) in sleepSeconds() 240 requested = remaining; in sleepSeconds()
|
/openbmc/qemu/hw/hyperv/ |
H A D | trace-events | 24 …rt, uint64_t rempages) "posting unballoon %"PRIu32" for %"PRIu64" @ 0x%"PRIx64", remaining %"PRIu64 28 …id, uint64_t count, uint64_t rempages) "posting balloon %"PRIu32" for %"PRIu64", remaining %"PRIu64 34 …der(uint64_t count, uint64_t start, unsigned int both) "remove response remaining range %"PRIu64" …
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | build.py | 21 remaining = list(values.keys()) 25 remaining.remove(varname) 31 for item in remaining:
|
/openbmc/u-boot/doc/ |
H A D | README.android-fastboot-protocol | 31 a. INFO -> the remaining 60 bytes are an informative message 35 b. FAIL -> the requested command failed. The remaining 60 bytes 56 a. INFO -> display the remaining 60 bytes and return to #4 58 b. FAIL -> display the remaining 60 bytes (if present) as a failure
|
/openbmc/qemu/net/ |
H A D | stream_data.c | 45 size_t remaining; in net_stream_data_receive() local 48 remaining = iov_size(iov, 2) - d->send_index; in net_stream_data_receive() 49 nlocal_iov = iov_copy(local_iov, 2, iov, 2, d->send_index, remaining); in net_stream_data_receive() 58 if (ret < (ssize_t)remaining) { in net_stream_data_receive()
|
/openbmc/qemu/hw/net/rocker/ |
H A D | rocker_tlv.h | 34 static inline RockerTlv *rocker_tlv_next(const RockerTlv *tlv, int *remaining) in rocker_tlv_next() argument 38 *remaining -= totlen; in rocker_tlv_next() 42 static inline int rocker_tlv_ok(const RockerTlv *tlv, int remaining) in rocker_tlv_ok() argument 44 return remaining >= (int) ROCKER_TLV_HDRLEN && in rocker_tlv_ok() 46 le16_to_cpu(tlv->len) <= remaining; in rocker_tlv_ok()
|
/openbmc/libpldm/src/transport/ |
H A D | transport.c | 165 struct timeval remaining; in pldm_transport_send_recv_msg() local 212 timersub(&end, &now, &remaining); in pldm_transport_send_recv_msg() 214 if (!timeval_validate_for_msec(&remaining)) { in pldm_transport_send_recv_msg() 220 (int)(timeval_to_msec(&remaining))); in pldm_transport_send_recv_msg()
|
/openbmc/phosphor-power/phosphor-regulators/docs/ |
H A D | configuration.md | 51 - Any remaining actions for the current voltage regulator/rail will be skipped. 52 - Configuration changes will still be applied to all remaining voltage
|
/openbmc/libpldm/tests/ |
H A D | msgbuf.cpp | 137 ctx->remaining = INTMAX_MIN; in TEST() 176 ctx->remaining = INTMAX_MIN; in TEST() 203 ctx->remaining = INTMAX_MIN + sizeof(val) - 1; in TEST() 254 ctx->remaining = INTMAX_MIN + sizeof(val) - 1; in TEST() 293 ctx->remaining = INTMAX_MIN + sizeof(val) - 1; in TEST() 332 ctx->remaining = INTMAX_MIN + sizeof(val) - 1; in TEST() 377 ctx->remaining = INTMAX_MIN + sizeof(val) - 1; in TEST() 429 ctx->remaining = INTMAX_MIN; in TEST() 481 ctx->remaining = INTMAX_MIN; in TEST() 553 ctx->remaining = INTMAX_MIN + sizeof(val) - 1; in TEST() [all …]
|
/openbmc/openbmc/poky/meta-selftest/recipes-test/devtool/devtool-upgrade-test1-1.5.3/ |
H A D | backported.patch | 20 + remaining - patch supplied by Erkki Seppälä (r147) 22 + remaining are 24 or more (Jacek Wielemborek)
|