Home
last modified time | relevance | path

Searched refs:peek (Results 1 – 25 of 77) sorted by relevance

1234

/openbmc/qemu/qobject/
H A Djson-parser.c262 JSONToken *peek, *token; in parse_pair() local
264 peek = parser_context_peek_token(ctxt); in parse_pair()
265 if (peek == NULL) { in parse_pair()
273 parse_error(ctxt, peek, "key is not a string in object"); in parse_pair()
312 JSONToken *token, *peek; in parse_object() local
319 peek = parser_context_peek_token(ctxt); in parse_object()
320 if (peek == NULL) { in parse_object()
325 if (peek->type != JSON_RCURLY) { in parse_object()
366 JSONToken *token, *peek; in parse_array() local
373 peek = parser_context_peek_token(ctxt); in parse_array()
[all …]
/openbmc/linux/tools/testing/kunit/
H A Dkunit_parser.py175 def peek(self) -> str: member in LineStream
185 s = self.peek()
288 ktap_match = KTAP_START.match(lines.peek())
289 tap_match = TAP_START.match(lines.peek())
318 match = TEST_HEADER.match(lines.peek())
344 match = TEST_PLAN.match(lines.peek())
375 line = lines.peek()
405 line = lines.peek()
454 while lines and not any(re.match(lines.peek())
/openbmc/linux/drivers/infiniband/hw/qib/
H A Dqib_qsfp.c278 u8 peek[4]; in qib_refresh_qsfp_cache() local
288 ret = qsfp_read(ppd, 0, peek, 3); in qib_refresh_qsfp_cache()
291 if ((peek[0] & 0xFE) != 0x0C) in qib_refresh_qsfp_cache()
293 "QSFP byte0 is 0x%02X, S/B 0x0C/D\n", peek[0]); in qib_refresh_qsfp_cache()
295 if ((peek[2] & 4) == 0) { in qib_refresh_qsfp_cache()
/openbmc/linux/net/sched/
H A Dsch_fifo.c188 .peek = qdisc_peek_head,
203 .peek = qdisc_peek_head,
218 .peek = qdisc_peek_head,
H A Dsch_blackhole.c33 .peek = blackhole_dequeue,
H A Dsch_plug.c210 .peek = qdisc_peek_dequeued,
H A Dsch_multiq.c138 skb = qdisc->ops->peek(qdisc); in multiq_peek()
390 .peek = multiq_peek,
H A Dsch_prio.c104 struct sk_buff *skb = qdisc->ops->peek(qdisc); in prio_peek()
413 .peek = prio_peek,
H A Dsch_drr.c380 skb = cl->qdisc->ops->peek(cl->qdisc); in drr_dequeue()
478 .peek = qdisc_peek_dequeued,
H A Dsch_tbf.c280 skb = q->qdisc->ops->peek(q->qdisc); in tbf_dequeue()
609 .peek = qdisc_peek_dequeued,
/openbmc/linux/Documentation/bpf/
H A Dmap_queue_stack.rst13 provides LIFO storage for BPF programs. These maps support peek, pop and
18 - ``BPF_MAP_LOOKUP_ELEM`` -> peek
90 A userspace program can peek at the ``value`` at the head of a queue or stack
H A Dmap_bloom_filter.rst21 - peek: determining whether an element is present in the map
29 - ``BPF_MAP_LOOKUP_ELEM`` -> peek
/openbmc/linux/drivers/rpmsg/
H A Dqcom_glink_native.h20 void (*peek)(struct qcom_glink_pipe *glink_pipe, void *data, member
/openbmc/u-boot/arch/arm/dts/
H A Dkeystone-k2hk-netcp.dtsi34 reg-names = "peek", "status", "config",
46 reg-names = "peek", "status", "config",
H A Dkeystone-k2g-netcp.dtsi33 reg-names = "peek", "config",
H A Dkeystone-k2e-netcp.dtsi34 reg-names = "peek", "status", "config",
H A Dkeystone-k2l-netcp.dtsi34 reg-names = "peek", "status", "config",
/openbmc/linux/rust/
H A Dbindgen_parameters18 # warning. We don't need to peek into it anyway.
/openbmc/linux/arch/arm/boot/dts/ti/keystone/
H A Dkeystone-k2hk-netcp.dtsi31 reg-names = "peek", "status", "config",
43 reg-names = "peek", "status", "config",
H A Dkeystone-k2g-netcp.dtsi31 reg-names = "peek", "config",
/openbmc/libbej/test/include/
H A Dbej_common_test.hpp46 if (inputStream.peek() != EOF) in readBinaryFile()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvstreams/
H A D0001-Forward-port-to-OpenSSL-1.1.x.patch154 hexdump_buffer(inbuf.peek(0, in_len), in_len, false));
350 - EVP_VerifyUpdate(&sig_ctx, original.peek(0, original.used()),
353 + EVP_VerifyUpdate(sig_ctx, original.peek(0, original.used()),
450 - EVP_SignUpdate(&sig_ctx, data.peek(0, data.used()), data.used());
453 + EVP_SignUpdate(sig_ctx, data.peek(0, data.used()), data.used());
/openbmc/linux/arch/powerpc/include/asm/
H A Dfsl_hcalls.h493 uint32_t addr_hi, uint32_t addr_lo, int peek) in fh_err_get_info() argument
507 r7 = peek; in fh_err_get_info()
/openbmc/phosphor-bmc-code-mgmt/bmc/
H A Dutils.cpp74 inFile.peek(); in mergeFiles()
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/
H A Dgcc.git-ab884fffe3fc82a710bea66ad651720d71c938b8.patch83 - if (ws(in).peek() == 'm') // keywords "minimum" or "maximum"
85 + auto c = ws(in).peek();
102 + c = ws(in).peek();
143 - if (ws(in).peek() == 'o') // keyword "only"

1234