Searched refs:strchr (Results 26 - 50 of 78) sorted by relevance

1234

/fuchsia/zircon/third_party/lib/acpica/source/compiler/
H A Dprutils.c93 if (strchr (MatchString, *Buffer))
117 if (strchr (MatchString, *Buffer))
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dfmemopen.c80 int plus = !!strchr(mode, '+');
82 if (!size || !strchr("rwa", *mode)) {
/fuchsia/zircon/third_party/lib/acpica/source/common/
H A Dgetopt.c164 (OptsPtr = strchr (opts, CurrentChar)) == NULL)
/fuchsia/zircon/system/host/h2md/
H A Dh2md.c131 char* x = strchr(line, ')');
217 if ((x = strchr(line, ';')) || (x = strchr(line, '{'))) {
/fuchsia/zircon/third_party/lib/cortex-strings/src/aarch64/
H A Dstrchr.S2 strchr - find a character in a string
81 def_fn strchr
159 .size strchr, . - strchr
/fuchsia/zircon/kernel/kernel/
H A Dcmdline.cpp101 ptr = strchr(ptr, 0) + 1;
/fuchsia/zircon/system/ulib/fs-host/
H A Dcommon.cpp171 char* equals = strchr(line, '=');
177 if (strchr(equals + 1, '=') != nullptr) {
197 char* new_line = strchr(src, '\n');
455 if ((sizestr = strchr(device, '@')) != nullptr) {
413 assert(len < PATH_MAX); char buf[PATH_MAX] = {0}; memcpy(&buf[0], str, len); buf[len++] = �; std::lock_guard<std::mutex> lock(depfile_lock_); if (write(depfile_.get(), buf, len) != len) { fprintf(stderr, �); return ZX_ERR_IO; } return ZX_OK; } zx_status_t FsCreator::RunCommand() { if (!fd_) { fprintf(stderr, �); return ZX_ERR_INTERNAL; } switch (command_) { case Command::kMkfs: return Mkfs(); case Command::kFsck: return Fsck(); case Command::kAdd: case Command::kCp: case Command::kManifest: case Command::kMkdir: return Add(); case Command::kLs: return Ls(); default: fprintf(stderr, �); return ZX_ERR_INTERNAL; } } zx_status_t FsCreator::ParseSize(char* device, size_t* out) { char* sizestr = nullptr; if ((sizestr = strchr(device, �)) != nullptr) { if (command_ != Command::kMkfs) { fprintf(stderr, �); return ZX_ERR_INVALID_ARGS; } *sizestr++ = 0; char* end; size_t size = strtoull(sizestr, &end, 10); if (end == sizestr) { fprintf(stderr, �, GetToolName(), sizestr); return ZX_ERR_INVALID_ARGS; } switch (end[0]) { case �: case �: size *= (1024 * 1024); end++; break; case �: case �: size *= (1024 * 1024 * 1024); end++; break; } if (end[0] || size == 0) { fprintf(stderr, �, GetToolName(), sizestr); return ZX_ERR_INVALID_ARGS; } if (length_ && offset_ + length_ > size) argument
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dsystem.c83 char *p = strchr(s, c);
H A Dalias.c146 if ((v = strchr(n+1, '=')) == NULL) { /* n+1: funny ksh stuff */
H A Dtab.c79 ZX_DEBUG_ASSERT(strchr(state->file_prefix, '/') == NULL);
H A Dvar.c437 if ((p = strchr(name, '=')) != NULL) {
499 eq = strchr(name, '=');
H A Dmain.c334 if (strchr(basename, '/'))
/fuchsia/zircon/third_party/ulib/musl/src/network/
H A Dlookup_serv.c88 if ((p = strchr(line, '#')))
H A Dresolvconf.c33 if (!strchr(line, '\n') && !feof(f)) {
/fuchsia/zircon/system/uapp/namespace/
H A Dnamespace.c52 char* src = strchr(dst, '=');
/fuchsia/zircon/system/uapp/sysconfig/
H A Dsysconfig.c190 char* equals = strchr(arg, '=');
/fuchsia/zircon/system/utest/fs/
H A Dtest-realpath.cpp39 if ((path = strchr(path, '/')) == NULL) {
/fuchsia/zircon/system/utest/fuzz-utils/
H A Dtest-fuzzer.cpp152 const char* t = strchr(s, '#');
/fuchsia/zircon/third_party/uapp/mkfs-msdosfs/
H A Dnewfs_msdos.c156 if (!o.create_size && !strchr(fname, '/')) {
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/
H A Dcpu-intel.c283 env2 = strchr(env1, ':');
/fuchsia/zircon/kernel/platform/pc/
H A Ddebug.cpp203 addr_start = strchr(serial_mode, ',');
208 irq_start = strchr(addr_start, ',');
/fuchsia/zircon/third_party/ulib/musl/src/time/
H A D__tz.c167 if (*s == ':' || ((p = strchr(s, '/')) && !memchr(s, ',', p - s))) {
175 if (l <= NAME_MAX && !strchr(s, '.')) {
/fuchsia/zircon/system/core/netsvc/
H A Dnetfile.c35 ptr = strchr(ptr, '/');
/fuchsia/zircon/system/ulib/fuzz-utils/
H A Dpath.cpp49 while (p && (sep = strchr(p, '/'))) {
/fuchsia/zircon/third_party/lib/acpica/source/components/utilities/
H A Dutclib.c78 * FUNCTION: strchr
347 * FUNCTION: strchr
359 strchr ( function

Completed in 103 milliseconds

1234