Searched refs:def (Results 1 - 12 of 12) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/process/
H A Dposix_spawnattr_getsigdefault.c3 int posix_spawnattr_getsigdefault(const posix_spawnattr_t* restrict attr, sigset_t* restrict def) { argument
4 *def = attr->__def;
H A Dposix_spawnattr_setsigdefault.c3 int posix_spawnattr_setsigdefault(posix_spawnattr_t* restrict attr, const sigset_t* restrict def) { argument
4 attr->__def = *def;
/fuchsia/zircon/third_party/uapp/dash/
H A Dgen-sources.sh10 # * src/builtins.def
24 gcc -E -x c -o builtins.def builtins.def.in -DJOBS=0
27 sh mkbuiltins builtins.def
/fuchsia/zircon/third_party/uapp/fsck-msdosfs/
H A Dmain.c112 ask(int def, const char *fmt, ...) argument
121 def = 0;
122 if (def)
124 return def;
/fuchsia/zircon/third_party/tools/android/
H A Dmkbootimg25 def filesize(f):
34 def update_sha(sha, f):
43 def pad_file(f, padding):
48 def write_header(args):
78 def __init__(self, option_strings, dest, nargs=None, **kwargs):
85 def __call__(self, parser, namespace, values, option_string=None):
92 def write_padded_file(f_out, f_in, padding):
99 def parse_int(x):
102 def parse_os_version(x):
118 def parse_os_patch_leve
[all...]
H A Dmkdtimg32 def write32(output, value):
38 def compress(filename, input, output):
60 def dtb_compress(dtb_file):
82 def align_page_size(offset, pagesize):
85 def write_head_info(head_info, args):
91 def write_dtb_entry_t(dt_entry, args):
101 def write_padding(args, padding):
105 def write_dtb(args):
129 def clean_gz_file(args):
138 def parse_cmdlin
[all...]
/fuchsia/zircon/scripts/
H A Dsymbolize48 def find_func(find_args, dirname, names):
59 def find_file_in_build_dir(name, build_dirs):
68 def buildid_to_full_path(buildid, build_dirs):
80 def find_file_in_boot_manifest(boot_app_name, build_dirs):
93 def find_dso_full_path_uncached(dso, exe_name, name_to_buildid, build_dirs):
138 def find_dso_full_path(dso, exe_name, name_to_buildid, build_dirs):
147 def tool_path(arch, tool, user_provided_path):
154 def run_tool(path, *args):
169 def run_addr2line(arch, elf_path, addr_as_hex_string):
175 def run_gd
[all...]
/fuchsia/zircon/third_party/tools/android/avb/
H A Davbtool61 def __init__(self, message):
82 def __init__(self, algorithm_type, hash_name, hash_num_bytes,
191 def get_release_string():
199 def round_to_multiple(number, size):
216 def round_to_pow2(number):
230 def encode_long(num_bits, value):
252 def decode_long(blob):
273 def egcd(a, b):
294 def modinv(a, m):
316 def parse_numbe
[all...]
/fuchsia/zircon/third_party/ulib/musl/ldso/
H A Ddynlink.c389 struct symdef def = {}; local
420 if (def.sym && sym->st_info >> 4 == STB_WEAK)
422 def.sym = sym;
423 def.dso = dso;
427 return def;
442 struct symdef def; local
468 def = (sym->st_info & 0xf) == STT_SECTION ? (struct symdef){.dso = dso, .sym = sym}
470 if (!def.sym && (sym->st_shndx != SHN_UNDEF || sym->st_info >> 4 != STB_WEAK)) {
478 def.sym = 0;
479 def
2282 struct symdef def = find_sym(p, s, 0); local
[all...]
/fuchsia/zircon/system/ulib/zircon-internal/include/lib/zircon-internal/
H A Dktrace.h80 #include <lib/zircon-internal/ktrace-def.h>
/fuchsia/zircon/system/core/virtcon/
H A Dtextcon.cpp239 #define ARG0(def) ((tc->argn_count > 0) ? tc->argn[0] : (def))
240 #define ARG1(def) ((tc->argn_count > 1) ? tc->argn[1] : (def))
/fuchsia/zircon/system/utest/fbl/
H A Dstring_tests.cpp404 fbl::String str = fbl::String::Concat({"abc", "def"});
410 fbl::String str = fbl::String::Concat({"abc", "", "def"});
416 fbl::String str = fbl::String::Concat({"abc", "def", ""});
422 fbl::String str = fbl::String::Concat({"", "abc", "def"});
428 fbl::String str = fbl::String::Concat({"abc", "def", "g", "hi", "jklmnop"});
595 fbl::String str = fbl::String::Concat({"abc", "def", "g", "hi", "jklmnop"}, &ac);
629 fbl::String def("def");
631 abc.swap(def);
634 EXPECT_STR_EQ("def", empt
[all...]

Completed in 171 milliseconds