Home
last modified time | relevance | path

Searched refs:c_string_to_string (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/mesa/pipe/
H A Ddevice.rs5 use mesa_rust_util::string::c_string_to_string;
29 c_string_to_string(unsafe { self.ldev.as_ref() }.driver_name) in driver_name()
105 let driver_name = unsafe { c_string_to_string(dev.ldev.as_ref().driver_name) }; in load_screens()
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/mesa/compiler/clc/
H A Dspirv.rs58 msgs.push(c_string_to_string(msg)); in callback_impl()
237 .find(|i| c_string_to_string(i.name) == name) in kernel_info()
244 .map(c_string_to_string) in kernels()
254 name: c_string_to_string(a.name), in args()
255 type_name: c_string_to_string(a.type_name), in args()
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/api/
H A Dprogram.rs310 res &= p.build(dev, c_string_to_string(options)); in build_program()
392 res &= p.compile(dev, c_string_to_string(options), &headers); in compile_program()
453 let res = Program::link(c, &devs, &progs, c_string_to_string(options)); in link_program()
H A Dkernel.rs256 let name = c_string_to_string(kernel_name); in create_kernel()
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/util/
H A Dstring.rs5 pub fn c_string_to_string(cstr: *const c_char) -> String { in c_string_to_string() function