/external/chromium_org/tools/gn/ |
function_write_file_unittest.cc | 20 std::vector<Value> args; local 21 args.push_back(Value(NULL, filename)); 22 args.push_back(data); 25 Value result = functions::RunWriteFile(scope, &function_call, args, &err);
|
gn_main.cc | 45 std::vector<std::string> args = GetArgs(cmdline); local 55 } else if (args.empty()) { 62 command = args[0]; 63 args.erase(args.begin()); 72 retval = found_command->second.runner(args);
|
/external/chromium_org/ui/events/ozone/evdev/libgestures_glue/ |
event_reader_libevdev_cros.cc | 19 std::string FormatLog(const char* fmt, va_list args) { 20 std::string msg = base::StringPrintV(fmt, args); 96 va_list args; local 97 va_start(args, fmt); 99 LOG(ERROR) << "libevdev: " << FormatLog(fmt, args); 101 LOG(WARNING) << "libevdev: " << FormatLog(fmt, args); 103 VLOG(3) << "libevdev: " << FormatLog(fmt, args); 104 va_end(args);
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
coverage-sandboxing.cc | 66 __sanitizer_sandbox_arguments args = {0}; local 67 args.coverage_sandboxed = 1; 68 args.coverage_fd = fd; 71 args.coverage_max_block_size = 0; 74 args.coverage_max_block_size = 100; 75 __sanitizer_sandbox_on_notify(&args);
|
/external/conscrypt/src/compat/native/ |
JNIHelp.h | 130 extern "C" int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args); 137 va_list args; local 138 va_start(args, fmt); 139 return jniThrowExceptionFmt(&env->functions, className, fmt, args); 140 va_end(args);
|
/external/deqp/android/scripts/ |
build.py | 143 args = parser.parse_args() variable 145 build(isRelease=args.isRelease, nativeBuildType=args.nativeBuildType)
|
/external/deqp/framework/common/ |
tcuDefs.cpp | 36 va_list args; local 37 va_start(args, format); 38 qpDiev(format, args); 39 va_end(args); 44 va_list args; local 45 va_start(args, format); 46 qpPrintv(format, args); 47 va_end(args);
|
/external/deqp/framework/delibs/deutil/ |
deCommandLine.c | 42 CharPtrArray* args = tmpPool ? CharPtrArray_create(tmpPool) : DE_NULL; local 49 if (!args) 58 /* Create buffer for args (no expansion can happen). */ 65 if (!buf || !CharPtrArray_pushBack(args, buf)) 101 if (!CharPtrArray_pushBack(args, outPtr)) 121 if (!cmdLine || !(cmdLine->args = (char**)deCalloc(sizeof(char*)*CharPtrArray_getNumElements(args)))) 129 cmdLine->numArgs = CharPtrArray_getNumElements(args); 133 cmdLine->args[argNdx] = CharPtrArray_get(args, argNdx) [all...] |
/external/e2fsprogs/intl/ |
plural-exp.c | 55 .args = 88 GERMANIC_PLURAL.val.args[0] = &plvar; 89 GERMANIC_PLURAL.val.args[1] = &plone; 115 struct parse_args args; local 138 args.cp = plural; 139 if (PLURAL_PARSE (&args) != 0) 141 *pluralp = args.res;
|
/external/elfutils/0.153/libcpu/ |
i386_parse.y | 183 static int check_argsdef (struct bitvalue *bitval, struct argument *args); 186 struct argument *args); 238 %type <arg> args optargs 351 struct argument *args = $6; 353 while (args != NULL) 355 fillin_arg ($1, args->name, newp, n); 357 args = args->next; 453 optargs: kSPACE args 459 args: args ',' ar label [all...] |
/external/fio/ |
gerror.c | 50 va_list args; local 53 va_start(args, format); 54 error = g_error_new_valist(g_quark_from_string("fio"), 1, format, args); 55 va_end(args);
|
log.c | 9 int log_valist(const char *str, va_list args) 14 len = vsnprintf(buffer, sizeof(buffer), str, args); 40 va_list args; local 43 va_start(args, format); 44 len = vsnprintf(buffer, sizeof(buffer), format, args); 45 va_end(args); 68 va_list args; local 71 va_start(args, format); 72 len = vsnprintf(buffer, sizeof(buffer), format, args); 73 va_end(args); [all...] |
/external/kernel-headers/original/uapi/linux/ |
seccomp.h | 37 * @args: up to 6 system call arguments always stored as 64-bit values 44 __u64 args[6]; member in struct:seccomp_data
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
debug.c | 21 va_list args; local 25 va_start(args, fmt); 27 ui_helpline__vshow(fmt, args); 29 ret = vfprintf(stderr, fmt, args); 30 va_end(args); 38 va_list args; local 42 va_start(args, fmt); 43 ret = vprintf(fmt, args); 44 va_end(args);
|
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
ProcessKDPLog.cpp | 12 #include "lldb/Interpreter/Args.h" 181 va_list args; local 182 va_start (args, format); 183 log->VAPrintf (format, args); 184 va_end (args);
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
ProcessGDBRemoteLog.cpp | 12 #include "lldb/Interpreter/Args.h" 191 va_list args; local 192 va_start (args, format); 193 log->VAPrintf (format, args); 194 va_end (args);
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_tgsi_action.h | 48 * Arguments should be packed into the args array. For example an SOA 49 * instructions that reads s0.x and s1.x args should look like this: 50 * args[0] = s0.x; 51 * args[1] = s1.x; 53 LLVMValueRef args[12]; member in struct:lp_build_emit_data 56 * Number of arguments in the args array. 91 * 1. Fetching the instruction arguments into the emit_data->args array.
|
/external/mesa3d/src/gallium/state_trackers/clover/tgsi/ |
compiler.cpp | 43 compat::vector<module::argument> args; local 53 args.push_back({ module::argument::scalar, 4 }); 55 args.push_back({ module::argument::global, 4 }); 57 args.push_back({ module::argument::local, 4 }); 59 args.push_back({ module::argument::constant, 4 }); 61 args.push_back({ module::argument::image2d_rd, 4 }); 63 args.push_back({ module::argument::image2d_wr, 4 }); 65 args.push_back({ module::argument::image3d_rd, 4 }); 67 args.push_back({ module::argument::image3d_wr, 4 }); 69 args.push_back({ module::argument::sampler, 0 }) [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_debug.h | 63 va_list args; local 65 va_start( args, fmt ); 66 debug_vprintf( fmt, args ); 67 va_end( args );
|
/external/openssl/apps/ |
nseq.c | 72 char **args, *infile = NULL, *outfile = NULL; local 81 args = argv + 1; 82 while (!badarg && *args && *args[0] == '-') { 83 if (!strcmp (*args, "-toseq")) toseq = 1; 84 else if (!strcmp (*args, "-in")) { 85 if (args[1]) { 86 args++; 87 infile = *args; 89 } else if (!strcmp (*args, "-out")) [all...] |
pkeyparam.c | 71 char **args, *infile = NULL, *outfile = NULL; local 89 args = argv + 1; 90 while (!badarg && *args && *args[0] == '-') 92 if (!strcmp (*args, "-in")) 94 if (args[1]) 96 args++; 97 infile = *args; 101 else if (!strcmp (*args, "-out")) 103 if (args[1] [all...] |
/external/qemu/android/base/ |
StringFormat.cpp | 20 va_list args; local 21 va_start(args, format); 22 String result = StringFormatWithArgs(format, args); 23 va_end(args); 27 String StringFormatWithArgs(const char* format, va_list args) { 29 StringAppendFormatWithArgs(&result, format, args); 34 va_list args; local 35 va_start(args, format); 36 StringAppendFormatWithArgs(string, format, args); 37 va_end(args); [all...] |
/external/qemu/android/utils/ |
assert.c | 43 _android_assert_log_default( const char* fmt, va_list args ) 45 vfprintf(stderr, fmt, args); 53 va_list args; local 55 va_start(args, messageFmt); 56 _assert_log(messageFmt, args); 57 va_end(args);
|
debug.c | 22 va_list args; local 23 va_start( args, format ); 25 vfprintf( stdout, format, args ); 27 va_end( args ); 33 va_list args; local 34 va_start( args, format ); 35 vfprintf( stdout, format, args ); 36 va_end( args ); 40 dprintnv( const char* format, va_list args ) 42 vfprintf( stdout, format, args ); 49 va_list args; local 61 va_list args; local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/ |
SDL_error_c.h | 55 } args[ERR_MAX_ARGS]; member in struct:SDL_error
|