/third_party/gn/examples/ios/build/config/ios/scripts/ |
H A D | merge_plist.py | 34 proc = subprocess.Popen( 37 output, _ = proc.communicate(json.dumps(content).encode('utf-8')) 38 if proc.returncode: 40 proc.returncode,
|
/third_party/mbedtls/tests/scripts/ |
H A D | test_psa_compliance.py | 92 proc = subprocess.Popen(['./psa-arch-tests-crypto'], 103 if proc.stdout is None: 106 for line in proc.stdout: 124 proc.wait()
|
/third_party/littlefs/scripts/ |
H A D | code.py | 170 proc = sp.Popen(cmd, 176 for line in proc.stdout: 186 proc.wait() 187 if proc.returncode != 0: 189 for line in proc.stderr: 201 proc = sp.Popen(cmd, 207 for line in proc.stdout: 225 proc.wait() 226 if proc.returncode != 0: 228 for line in proc [all...] |
H A D | data.py | 170 proc = sp.Popen(cmd, 176 for line in proc.stdout: 186 proc.wait() 187 if proc.returncode != 0: 189 for line in proc.stderr: 201 proc = sp.Popen(cmd, 207 for line in proc.stdout: 225 proc.wait() 226 if proc.returncode != 0: 228 for line in proc [all...] |
/kernel/linux/linux-5.10/sound/pci/ac97/ |
H A D | ac97_proc.c | 19 * proc interface 420 if (ac97->bus->proc == NULL) in snd_ac97_proc_init() 425 ac97->bus->proc); in snd_ac97_proc_init() 428 ac97->proc = entry; in snd_ac97_proc_init() 431 ac97->bus->proc); in snd_ac97_proc_init() 446 snd_info_free_entry(ac97->proc); in snd_ac97_proc_done() 447 ac97->proc = NULL; in snd_ac97_proc_done() 460 bus->proc = entry; in snd_ac97_bus_proc_init() 465 snd_info_free_entry(bus->proc); in snd_ac97_bus_proc_done() 466 bus->proc in snd_ac97_bus_proc_done() [all...] |
/kernel/linux/linux-6.6/sound/pci/ac97/ |
H A D | ac97_proc.c | 19 * proc interface 420 if (ac97->bus->proc == NULL) in snd_ac97_proc_init() 425 ac97->bus->proc); in snd_ac97_proc_init() 428 ac97->proc = entry; in snd_ac97_proc_init() 431 ac97->bus->proc); in snd_ac97_proc_init() 446 snd_info_free_entry(ac97->proc); in snd_ac97_proc_done() 447 ac97->proc = NULL; in snd_ac97_proc_done() 460 bus->proc = entry; in snd_ac97_bus_proc_init() 465 snd_info_free_entry(bus->proc); in snd_ac97_bus_proc_done() 466 bus->proc in snd_ac97_bus_proc_done() [all...] |
/third_party/skia/src/shaders/gradients/ |
H A D | Sk4fLinearGradient.cpp | 219 LinearIntervalProcessor<premul, tileMode> proc(fIntervals->begin(), in shadeSpanInternal() 231 const int n = std::min(SkScalarTruncToInt(proc.currentAdvance() + 1), count); in shadeSpanInternal() 237 SkASSERT(SkScalarIsFinite(proc.currentAdvance()) in shadeSpanInternal() 238 || (n == count && proc.currentRampIsZero())); in shadeSpanInternal() 240 if (proc.currentRampIsZero()) { in shadeSpanInternal() 241 DstTraits<premul>::store(proc.currentColor(), dst, n); in shadeSpanInternal() 243 ramp<premul>(proc.currentColor(), proc.currentColorGrad(), dst, n, in shadeSpanInternal() 247 proc.advance(SkIntToScalar(n)); in shadeSpanInternal()
|
/kernel/linux/linux-5.10/drivers/acpi/ |
H A D | tables.c | 277 * @proc: array of acpi_subtable_proc struct containing entry id 279 * @proc_num: how big proc is? 282 * For each proc_num find a subtable with proc->id and run proc->handler 291 * On success returns sum of all matching entries for all proc handlers. 296 struct acpi_subtable_proc *proc, int proc_num, in acpi_parse_entries_array() 319 if (acpi_get_entry_type(&entry) != proc[i].id) in acpi_parse_entries_array() 321 if (!proc[i].handler || in acpi_parse_entries_array() 322 (!errs && proc[i].handler(entry.hdr, table_end))) { in acpi_parse_entries_array() 327 proc[ in acpi_parse_entries_array() 294 acpi_parse_entries_array(char *id, unsigned long table_size, struct acpi_table_header *table_header, struct acpi_subtable_proc *proc, int proc_num, unsigned int max_entries) acpi_parse_entries_array() argument 355 acpi_table_parse_entries_array(char *id, unsigned long table_size, struct acpi_subtable_proc *proc, int proc_num, unsigned int max_entries) acpi_table_parse_entries_array() argument 395 struct acpi_subtable_proc proc = { acpi_table_parse_entries() local [all...] |
/third_party/glfw/src/ |
H A D | vulkan.c | 251 GLFWvkproc proc; in glfwGetInstanceProcAddress() local 263 proc = (GLFWvkproc) vkGetInstanceProcAddr(instance, procname); in glfwGetInstanceProcAddress() 264 if (!proc) in glfwGetInstanceProcAddress() 267 proc = (GLFWvkproc) _glfwPlatformGetModuleSymbol(_glfw.vk.handle, procname); in glfwGetInstanceProcAddress() 270 return proc; in glfwGetInstanceProcAddress()
|
/third_party/skia/src/gpu/ |
H A D | GrXferProcessor.cpp | 199 const GrXferProcessor& proc) { in adjust_for_lcd_coverage() 200 if (srcCoverage && proc.isLCD()) { in adjust_for_lcd_coverage() 291 const GrXferProcessor& proc) { in DefaultCoverageModulation() 293 if (proc.isLCD()) { in DefaultCoverageModulation() 305 if (proc.isLCD()) { in DefaultCoverageModulation() 197 adjust_for_lcd_coverage(GrGLSLXPFragmentBuilder* fragBuilder, const char* srcCoverage, const GrXferProcessor& proc) adjust_for_lcd_coverage() argument 286 DefaultCoverageModulation(GrGLSLXPFragmentBuilder* fragBuilder, const char* srcCoverage, const char* dstColor, const char* outColor, const char* outColorSecondary, const GrXferProcessor& proc) DefaultCoverageModulation() argument
|
/third_party/ffmpeg/libavutil/ |
H A D | macos_kperf.c | 42 typedef ret name##proc(__VA_ARGS__); \ 43 static name##proc *name = NULL; 81 #define F(ret, name, ...) av_assert0(name = (name##proc *)(dlsym(kperf, #name))); in kperf_init()
|
/third_party/mesa3d/src/compiler/glsl/tests/ |
H A D | optimization_test.py | 86 proc = subprocess.Popen( 91 out, err = proc.communicate(source.encode('utf-8')) 95 if proc.returncode == 255:
|
/third_party/node/deps/v8/tools/unittests/ |
H A D | compare_torque_output_test.py | 26 proc = subprocess.Popen([ 30 _, err = proc.communicate() 31 return proc.returncode, err
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_4/ |
H A D | tirpc_svc_4.c | 108 char *(*proc) (char *); in exm_proc() 116 proc = (char *(*)(char *))simplePing; in exm_proc() 126 result = (char *)(*proc) ((char *)&argument); in exm_proc()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_svc_freeargs/ |
H A D | rpc_svc_freeargs_svc.c | 102 char *(*proc) (int, SVCXPRT *); in rcp_service() 111 proc = (char *(*)(int, SVCXPRT *))simplePing; in rcp_service() 122 result = (char *)(*proc) (argument, transp); in rcp_service()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_svc_getargs/ |
H A D | rpc_svc_getargs.c | 102 char *(*proc) (int, SVCXPRT *); in rcp_service() 111 proc = (char *(*)(int, SVCXPRT *))simplePing; in rcp_service() 125 result = (char *)(*proc) (argument, transp); in rcp_service()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_svc_2/ |
H A D | rpc_svc_2.c | 119 char *(*proc) (struct datas *, SVCXPRT *); in rcp_service() 127 proc = (char *(*)(struct datas *, SVCXPRT *))calcProc; in rcp_service() 145 result = (char *)(*proc) ((struct datas *)&argument, transp); in rcp_service()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_11/ |
H A D | tirpc_svc_11.c | 107 char *(*proc) (char *); in exm_proc() 115 proc = (char *(*)(char *))simplePing; in exm_proc() 143 result = (char *)(*proc) ((char *)&argument); in exm_proc()
|
/third_party/python/Tools/scripts/ |
H A D | get-remote-certificate.py | 19 proc = Popen(cmd, stdout=PIPE, stderr=STDOUT, stdin=DEVNULL) 20 status = proc.wait() 21 output = proc.stdout.read()
|
/third_party/python/Lib/distutils/ |
H A D | spawn.py | 79 proc = subprocess.Popen(cmd, env=env) 80 proc.wait() 81 exitcode = proc.returncode
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
H A D | generate_spirv_corpus.py | 77 proc = subprocess.Popen(cmd, 80 stdout, stderr = proc.communicate() 81 if proc.returncode != 0:
|
/third_party/python/Lib/test/ |
H A D | test_cppext.py | 66 proc = subprocess.run(cmd, 70 if proc.returncode: 71 print(proc.stdout, end='') 73 f"{operation} failed with exit code {proc.returncode}")
|
/third_party/skia/gm/ |
H A D | hugepath.cpp | 44 auto proc = [](SkCanvas* canvas, int w, int h) { in DEF_SIMPLE_GM() local 70 proc(canvas, 100, 60); in DEF_SIMPLE_GM() 72 proc(canvas, 100 * 1024, 60); in DEF_SIMPLE_GM()
|
/kernel/linux/linux-5.10/fs/lockd/ |
H A D | clntproc.c | 194 dprintk("lockd: clnt proc returns %d\n", status); in nlmclnt_proc() 261 nlmclnt_call(const struct cred *cred, struct nlm_rqst *req, u32 proc) in nlmclnt_call() argument 275 (int)proc, host->h_name); in nlmclnt_call() 284 msg.rpc_proc = &clnt->cl_procinfo[proc]; in nlmclnt_call() 339 static struct rpc_task *__nlm_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, const struct rpc_call_ops *tk_ops) in __nlm_async_call() argument 351 (int)proc, host->h_name); in __nlm_async_call() 357 msg->rpc_proc = &clnt->cl_procinfo[proc]; in __nlm_async_call() 367 static int nlm_do_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, const struct rpc_call_ops *tk_ops) in nlm_do_async_call() argument 371 task = __nlm_async_call(req, proc, msg, tk_ops); in nlm_do_async_call() 381 int nlm_async_call(struct nlm_rqst *req, u32 proc, cons argument 390 nlm_async_reply(struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) nlm_async_reply() argument 406 nlmclnt_async_call(const struct cred *cred, struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) nlmclnt_async_call() argument [all...] |
/kernel/linux/linux-6.6/fs/lockd/ |
H A D | clntproc.c | 197 dprintk("lockd: clnt proc returns %d\n", status); in nlmclnt_proc() 264 nlmclnt_call(const struct cred *cred, struct nlm_rqst *req, u32 proc) in nlmclnt_call() argument 278 (int)proc, host->h_name); in nlmclnt_call() 287 msg.rpc_proc = &clnt->cl_procinfo[proc]; in nlmclnt_call() 342 static struct rpc_task *__nlm_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, const struct rpc_call_ops *tk_ops) in __nlm_async_call() argument 354 (int)proc, host->h_name); in __nlm_async_call() 360 msg->rpc_proc = &clnt->cl_procinfo[proc]; in __nlm_async_call() 370 static int nlm_do_async_call(struct nlm_rqst *req, u32 proc, struct rpc_message *msg, const struct rpc_call_ops *tk_ops) in nlm_do_async_call() argument 374 task = __nlm_async_call(req, proc, msg, tk_ops); in nlm_do_async_call() 384 int nlm_async_call(struct nlm_rqst *req, u32 proc, cons argument 393 nlm_async_reply(struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) nlm_async_reply() argument 409 nlmclnt_async_call(const struct cred *cred, struct nlm_rqst *req, u32 proc, const struct rpc_call_ops *tk_ops) nlmclnt_async_call() argument [all...] |