Home
last modified time | relevance | path

Searched full:world (Results 1 – 25 of 470) sorted by relevance

12345678910>>...19

/openbmc/qemu/hw/net/rocker/
H A Drocker_world.c23 struct world { struct
29 ssize_t world_ingress(World *world, uint32_t pport, in world_ingress() argument
32 if (world->ops->ig) { in world_ingress()
33 return world->ops->ig(world, pport, iov, iovcnt); in world_ingress()
39 int world_do_cmd(World *world, DescInfo *info, in world_do_cmd() argument
42 if (world->ops->cmd) { in world_do_cmd()
43 return world->ops->cmd(world, info, buf, cmd, cmd_info_tlv); in world_do_cmd()
49 World *world_alloc(Rocker *r, size_t sizeof_private, in world_alloc()
52 World *w = g_malloc0(sizeof(World) + sizeof_private); in world_alloc()
64 void world_free(World *world) in world_free() argument
[all …]
H A Drocker_world.h27 typedef int (world_init)(World *world);
28 typedef void (world_uninit)(World *world);
29 typedef ssize_t (world_ig)(World *world, uint32_t pport,
31 typedef int (world_cmd)(World *world, DescInfo *info,
43 ssize_t world_ingress(World *world, uint32_t pport,
45 int world_do_cmd(World *world, DescInfo *info,
48 World *world_alloc(Rocker *r, size_t sizeof_private,
50 void world_free(World *world);
51 void world_reset(World *world);
53 void *world_private(World *world);
[all …]
H A Drocker_fp.c31 World *world; member
146 return world_ingress(port->world, port->pport, iov, iovcnt); in fp_port_receive_iov()
180 World *fp_port_get_world(FpPort *port) in fp_port_get_world()
182 return port->world; in fp_port_get_world()
185 void fp_port_set_world(FpPort *port, World *world) in fp_port_set_world() argument
187 DPRINTF("port %d setting world \"%s\"\n", port->index, world_name(world)); in fp_port_set_world()
188 port->world = world; in fp_port_set_world()
191 bool fp_port_check_world(FpPort *port, World *world) in fp_port_check_world() argument
193 return port->world == world; in fp_port_check_world()
H A Drocker_fp.h41 World *fp_port_get_world(FpPort *port);
42 void fp_port_set_world(FpPort *port, World *world);
43 bool fp_port_check_world(FpPort *port, World *world);
H A Drocker.h57 typedef struct world World; typedef
70 int rx_produce(World *world, uint32_t pport,
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/directfb/directfb/
H A Dfusion.patch9 direct_mutex_lock( &world->event_dispatcher_mutex );
12 - if (!world->event_dispatcher_buffers)
13 + if (!world->event_dispatcher_buffers){
14 … direct_waitqueue_wait( &world->event_dispatcher_cond, &world->event_dispatcher_mutex );
16 + if (world->dispatch_stop) {
18 + direct_mutex_unlock( &world->event_dispatcher_mutex );
22 buf = (FusionEventDispatcherBuffer *)world->event_dispatcher_buffers;
28 … direct_waitqueue_wait( &world->event_dispatcher_cond, &world->event_dispatcher_mutex );
29 + if (world->dispatch_stop) {
31 + direct_mutex_unlock( &world->event_dispatcher_mutex );
[all …]
/openbmc/u-boot/drivers/tee/optee/
H A Doptee_smc.h82 * Used by non-secure world to figure out which Trusted OS is installed.
95 * Used by non-secure world to figure out which version of the Trusted OS
153 * world.
194 * Exchanges capabilities between normal world and secure world
198 * a1 bitfield of normal world capabilities OPTEE_SMC_NSEC_CAP_*
204 * a1 bitfield of secure world capabilities OPTEE_SMC_SEC_CAP_*
208 * a0 OPTEE_SMC_RETURN_ENOTAVAIL, can't use the capabilities from normal world
209 * a1 bitfield of secure world capabilities OPTEE_SMC_SEC_CAP_*
212 /* Normal world works as a uniprocessor system */
214 /* Secure world has reserved shared memory for normal world to use */
[all …]
H A Doptee_msg.h14 * an instance of OP-TEE running in secure world. This file is based on
20 * 2. Requests from normal world
21 * 3. Requests from secure world, Remote Procedure Call (RPC), handled by
110 * Secure and normal world communicates pointers as physical address
111 * instead of the virtual address. This is because secure and normal world
112 * have completely independent memory mapping. Normal world can even have a
115 * structure to secure world.
138 * Value parameters are passed unchecked between normal and secure world.
221 * Part 2 - requests from normal world
249 * Used by non-secure world to figure out which Trusted OS is installed.
[all …]
/openbmc/docs/development/
H A Ddevtool-hello-world.md1 # OpenBMC Hello World using devtool
47 + std::cout<<"Hello World" <<std::endl;
65 4. Confirm your "Hello World" made it into the new image
70 journalctl | grep "Hello World"
76 <date> romulus phosphor-bmc-state-manager[1089]: Hello World
88 1. Modify your hello world
94 Change your cout to "Hello World Again"
100 phosphor-state-manager repo to pick up your new hello world change.
112 Now is time to load your Hello World application in to QEMU virtual hardware.
154 You'll see your "Hello World Again" message displayed. Ctrl^C to end that
[all …]
/openbmc/qemu/docs/devel/
H A Dwriting-monitor-commands.rst97 Writing a simple command: hello-world
102 "Hello, world" to the standard output.
104 Our command will be called "hello-world". It takes no arguments, nor does it
112 # @hello-world:
116 { 'command': 'hello-world' }
122 The next step is to write the "hello-world" implementation. As explained
124 "hello-world" doesn't pertain to any, so we put its implementation in
129 printf("Hello, world!\n");
147 { "execute": "hello-world" }
149 Then check the terminal running QEMU and look for the "Hello, world" string. If
[all …]
/openbmc/qemu/tests/tcg/s390x/
H A Dhello-s390x-asm.S2 * Hello, World! in assembly.
8 /* puts("Hello, World!"); */
19 foo: .asciz "Hello, World!\n"
/openbmc/u-boot/doc/
H A DREADME.fsl-trustzone-components15 - Separates Secure World and Normal World on-chip RAM (OCRAM) spaces.
22 - Separates Secure World and Normal World external memory spaces for bus masters
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/duktape/files/
H A Drun-ptest4 out="Hello world!"
13 ./eval "print('Hello world!'); 123;" > out.log
18 if grep -w 'Hello world!\|123' eval.log 2>&1; then
/openbmc/openbmc/poky/meta/recipes-core/meta/
H A Dmeta-world-pkgdata.bb1 SUMMARY = "Pulls in pkgdata for world"
15 WORLD_PKGDATADIR = "${D}/world-pkgdata"
20 do_collect_packagedata[sstate-outputdirs] = "${STAGING_DIR_HOST}/world-pkgdata"
/openbmc/phosphor-dbus-monitor/src/test/yaml/callbackgentest/
H A Done.yaml46 message: Hello world from PDM!
54 message: Hello world from PDM!
62 message: Hello world from PDM!
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-hello.rst4 Hello World Example
7 BitBake Hello World
12 World <http://en.wikipedia.org/wiki/Hello_world_program>`__" example.
13 This appendix demonstrates, in tutorial form, Hello World within the
82 The Hello World Example
85 The overall goal of this exercise is to build a complete "Hello World"
93 build to eventually conclude with a working, minimal "Hello World"
105 `Mailing List post - The BitBake equivalent of "Hello, World!"
109 "Hello World". However, it is unknown what BitBake needs and what you
119 Following is the complete "Hello World" example.
[all …]
/openbmc/qemu/tests/tcg/multiarch/system/
H A Dhello.c2 * Hello World, system test version
12 ml_printf("Hello World\n"); in main()
/openbmc/qemu/python/qemu/qmp/
H A Dmessage.py33 >>> msg = Message(b'{"hello": "world"}')
34 >>> assert msg['hello'] == 'world'
38 "hello": "world",
44 >>> msg = Message({"hello": "world"})
46 b'{"hello":"world","id":"foobar"}'
51 {'hello': 'world'}
/openbmc/openbmc/poky/meta/recipes-core/picolibc/
H A Dpicolibc-helloworld_git.bb27 …-T${S}/hello-world/${PICOLIBC_LINKERSCRIPT} -specs=picolibc.specs --oslib=semihost -o ${BAREMETAL_…
/openbmc/boost-dbus/test/
H A Dmessage.cpp46 dbus::dbus_variant v(std::string("hello world")); in TEST()
49 std::vector<dbus::dbus_variant> av{{std::string("hello world"), 1, 42}}; in TEST()
64 dbus::dbus_variant v(std::string("hello world")); in TEST()
65 std::vector<dbus::dbus_variant> av{{std::string("hello world"), 1, 42}}; in TEST()
/openbmc/u-boot/arch/arm/include/asm/
H A Domap_sec_common.h45 * region of external memory for secure world use, and protects it using memory
46 * firewalls that prevent public world access. This API is intended to setaside
47 * memory that will be used for a secure world OS/TEE.
/openbmc/qemu/rust/qemu-api/src/
H A Dcallbacks.rs63 /// let s: String = call_it(&str::to_owned, "hello world");
64 /// assert_eq!(s, "hello world");
78 /// let x: &'static str = "goodbye world";
94 /// assert!(optional(&(), "hello world").is_none());
104 /// let s: String = call_it(&(), "hello world"); // panics
134 /// let s: String = call_it((), "hello world"); // does not compile
154 /// let s: String = call_it((), "hello world"); // does not compile
224 F::call(("hello world",)) in do_test_call()
229 assert_eq!(do_test_call(&str::to_owned), "hello world") in test_call()
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dvvfat52 f.write(f"Hello, world! {i}\n")
236 fat16.read_file(file), f"Hello, world! {i}\n".encode("ascii")
275 self.assertEqual(fat16.read_file(file), b"Hello, world! 0\n")
277 fat16.write_file(file, b"Hello, world! 0\n")
278 self.assertEqual(fat16.read_file(file), b"Hello, world! 0\n")
281 self.assertEqual(f.read(), b"Hello, world! 0\n")
293 new_content = b"Hello, world! Modified\n"
294 self.assertEqual(fat16.read_file(file), b"Hello, world! 0\n")
312 self.assertEqual(fat16.read_file(file), b"Hello, world! 0\n")
331 self.assertEqual(fat16.read_file(file), b"Hello, world! 0\n")
[all …]
/openbmc/phosphor-dbus-monitor/src/test/yaml/callbackgroupgentest/
H A Dtest.yaml43 message: Hello world from PDM!
51 message: Hello world from PDM!
59 message: Hello world from PDM!
/openbmc/qemu/tests/tcg/aarch64_be/
H A Dhello.c2 * Non-libc syscall hello world for Aarch64 BE
33 write(1, "Hello World\n", 12); in _start()

12345678910>>...19