Searched refs:names (Results 1 - 24 of 24) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/dirent/
H A Dscandir.c11 struct dirent *de, **names = 0, **tmp; local
23 if (len > SIZE_MAX / sizeof *names)
25 tmp = realloc(names, len * sizeof *names);
28 names = tmp;
30 names[cnt] = malloc(de->d_reclen);
31 if (!names[cnt])
33 memcpy(names[cnt++], de, de->d_reclen);
39 if (names)
41 free(names[cn
[all...]
/fuchsia/zircon/third_party/ulib/musl/src/ctype/
H A Diswctype.c51 static const char names[] = "alnum\0" local
63 for (i = 1, p = names; *p; i++, p += 6)
/fuchsia/zircon/system/ulib/runtime/include/runtime/
H A Dprocessargs.h37 // names[] array must have zx_proc_args_t.names_num + 1 elements. The
41 char* names[]);
/fuchsia/zircon/system/ulib/runtime/
H A Dprocessargs.c75 char* argv[], char* envp[], char* names[]) {
85 if (names != NULL && status == ZX_OK) {
86 status = unpack_strings(msg, bytes, names, pa->names_off, pa->names_num);
74 zxr_processargs_strings(void* msg, uint32_t bytes, char* argv[], char* envp[], char* names[]) argument
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/
H A Djemalloc_mangle.sh8 * By default application code must explicitly refer to mangled symbol names,
29 * The ${symbol_prefix}* macros can be used as stable alternative names for the
/fuchsia/zircon/third_party/ulib/musl/src/env/
H A D__libc_start_main.c18 char** names; member in struct:start_params
38 p->namec, p->names);
111 char* names[p.namec + 1]; local
112 p.names = names;
115 status = zxr_processargs_strings(buffer, nbytes, p.argv, __environ, p.names);
/fuchsia/zircon/system/host/fidl/
H A Drules.mk23 $(LOCAL_DIR)/lib/names.cpp \
/fuchsia/zircon/system/ulib/fdio/
H A Dspawn.c283 fuchsia_process_NameInfo* names = (fuchsia_process_NameInfo*)(req + 1); local
284 uint8_t* payload = (uint8_t*)(names + name_count);
291 req->names.count = name_count;
292 req->names.data = (void*)FIDL_ALLOC_PRESENT;
301 names[n].path.size = size;
302 names[n].path.data = (void*)FIDL_ALLOC_PRESENT;
303 names[n].directory = FIDL_HANDLE_PRESENT;
314 names[n].path.size = size;
315 names[n].path.data = (void*)FIDL_ALLOC_PRESENT;
316 names[
[all...]
H A Dunistd.c533 char** names) {
626 fdio_ns_bind(fdio_root_ns, names[arg], h);
1362 // - Sending the real operation + names to the source parent vnode, along with
529 __libc_extensions_init(uint32_t handle_count, zx_handle_t handle[], uint32_t handle_info[], uint32_t name_count, char** names) argument
/fuchsia/zircon/third_party/ulib/musl/src/internal/
H A Dlibc.h84 char** names) __attribute__((weak));
/fuchsia/zircon/system/ulib/fuzz-utils/
H A Dpath.cpp188 auto names = List(); local
189 for (const char* name = names->first(); name; name = names->next()) {
/fuchsia/zircon/scripts/
H A Dfastboot-flash39 echo "-Z <partition name> : Zircon partition names <comma separated> (a,b,r,syscfg)"
69 # process partitions names. We are either allowed 1 or 4 partitions
73 echo Invalid partition names provided
94 # At this point we have the partition names
H A Dsymbolize12 function names and, if available, source code locations (filenames and
48 def find_func(find_args, dirname, names):
53 for name in names:
106 # Crashlogger prefixes such names with "app:" for our benefit.
/fuchsia/zircon/system/ulib/process-launcher/
H A Dlauncher.cpp231 fuchsia_process_NameInfo* names = static_cast<fuchsia_process_NameInfo*>(payload->data); local
234 handles_.push_back(zx::handle(names[i].directory));
235 nametable_.push_back(GetString(names[i].path));
/fuchsia/zircon/system/ulib/launchpad/include/launchpad/
H A Dlaunchpad.h202 size_t count, const char* const* names);
/fuchsia/zircon/system/ulib/launchpad/
H A Dlaunchpad.c42 char* names; member in struct:launchpad
236 size_t count, const char* const* names) {
239 zx_status_t r = build_stringtable(lp, count, names, &total, &buffer);
243 free(lp->names);
245 lp->names = buffer;
903 memcpy(names_start, lp->names, lp->names_len);
235 launchpad_set_nametable(launchpad_t* lp, size_t count, const char* const* names) argument
/fuchsia/zircon/make/
H A Dmacros.mk60 # to be valid C names (see MAKECVAR above).
H A Dbuild.mk196 # only expect the new kernel.zbi and/or zircon.zbi names.
H A Dmodule.mk106 # MODULE_NAME is used to generate installed names
H A Dmodule-userlib.mk186 # We replace . with - in module dep names to handle async.xyz which are defined
/fuchsia/zircon/system/host/fidl/compiler/
H A Dmain.cpp24 #include <fidl/names.h>
/fuchsia/zircon/third_party/ulib/backtrace/
H A Delf.c558 const char *names; local
682 /* Read the section names. */
692 names = (const char *) names_view.data;
721 name = names + sh_name;
/fuchsia/zircon/third_party/ulib/jemalloc/bin/
H A Djeprof.in16 # * Neither the name of Google Inc. nor the names of its
149 <profiles> is a space separated list of profile names.
168 Maps addresses to symbol names. In this mode, stdin should be a
200 --symbols Print demangled symbol names found at given addresses
1041 Show source listing of routines whose names match "routine_regexp"
1044 Displays a source listing of routines whose names match "routine_regexp"
1056 Show disassembly of routines whose names match "routine_regexp",
1158 # We have a list of function names, which include the inlined
1160 # illegal in function names.
1247 # names
[all...]
/fuchsia/zircon/system/host/fidl/lib/
H A Dflat_ast.cpp16 #include "fidl/names.h"
75 Scope<StringView> names; member in struct:fidl::flat::__anon559::MethodScope
1244 // To compare two Decl's in the same library, it suffices to compare the unqualified names of the Decl's.
1366 auto name_result = method_scope.names.Insert(method.name.data(), method.name);

Completed in 200 milliseconds