Home
last modified time | relevance | path

Searched refs:origarg (Results 1 – 12 of 12) sorted by relevance

/dports/net/ldapsdk/mozldap-6.0.7/c-sdk/ldap/libraries/libldap/
H A Dsaslio.c340 SASLIOSocketArg **origarg = NULL; /* list of saved original socket args */ in nsldapi_sasl_poll() local
349 origarg = staticorigarg; in nsldapi_sasl_poll()
352 origarg = (SASLIOSocketArg **)NSLDAPI_MALLOC(nfds*sizeof(SASLIOSocketArg *)); in nsldapi_sasl_poll()
359 origarg[i] = fds[i].lpoll_socketarg; in nsldapi_sasl_poll()
388 if ((SASLIOSocketArg *)arg == origarg[i]) { in nsldapi_sasl_poll()
389 fds[i].lpoll_socketarg = origarg[i]; in nsldapi_sasl_poll()
396 if (origarg != staticorigarg) { in nsldapi_sasl_poll()
397 NSLDAPI_FREE(origarg); in nsldapi_sasl_poll()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/ldap/c-sdk/libraries/libldap/
H A Dsaslio.c321 SASLIOSocketArg** origarg = NULL; /* list of saved original socket args */ in nsldapi_sasl_poll() local
330 origarg = staticorigarg; in nsldapi_sasl_poll()
333 origarg = in nsldapi_sasl_poll()
341 origarg[i] = fds[i].lpoll_socketarg; in nsldapi_sasl_poll()
370 if ((SASLIOSocketArg*)arg == origarg[i]) { in nsldapi_sasl_poll()
371 fds[i].lpoll_socketarg = origarg[i]; in nsldapi_sasl_poll()
378 if (origarg != staticorigarg) { in nsldapi_sasl_poll()
379 NSLDAPI_FREE(origarg); in nsldapi_sasl_poll()
/dports/archivers/dpkg/dpkg-1.19.7/scripts/Dpkg/Source/Package/
H A DV1.pm296 my $origarg = shift(@argv);
297 if (length($origarg)) {
298 stat($origarg)
299 or syserr(g_('cannot stat orig argument %s'), $origarg);
301 $origdir = File::Spec->catdir($origarg);
310 $origtargz = $origarg;
319 $origarg);
/dports/lang/ruby26/ruby-2.6.9/
H A Druby.c204 } origarg; variable
540 else if (origarg.argc > 0 && origarg.argv && dli.dli_fname == origarg.argv[0]) { in runtime_libruby_path()
1558 origarg.argc > 0 && origarg.argv && origarg.argv[0] ? origarg.argv[0] : in process_options()
2219 if (origarg.argv == 0) in set_arg0()
2346 if (origarg.argc > 0 && origarg.argv) in ruby_set_argv()
2347 dln_argv0 = origarg.argv[0]; in ruby_set_argv()
2367 if (!origarg.argv || origarg.argc <= 0) { in ruby_process_options()
2368 origarg.argc = argc; in ruby_process_options()
2369 origarg.argv = argv; in ruby_process_options()
2427 origarg.argc = *argc; in ruby_sysinit()
[all …]
/dports/science/lammps/lammps-stable_29Sep2021/src/
H A Dset.cpp85 int allcount,origarg; in command() local
91 origarg = iarg; in command()
639 if (strcmp(arg[origarg],"cc") == 0) in command()
641 allcount,arg[origarg],arg[origarg+1]); in command()
644 allcount,arg[origarg]); in command()
/dports/games/xpilot-ng-server/xpilot-ng-4.7.3/src/server/
H A Dcommand.c839 char *origarg = arg; in Cmd_op() local
896 issuer->name, origarg); in Cmd_op()
899 snprintf(msg, size, "Executed '/op %s' on %s", origarg, pl->name); in Cmd_op()
/dports/graphics/openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/liboslcomp/
H A Dcodegen.cpp1991 Symbol* origarg = thisarg; in codegen_arg() local
1994 if (thisarg != origarg && form in codegen_arg()
1995 && !equivalent(origarg->typespec(), form->typespec()) in codegen_arg()
2000 origarg->typespec(), origarg->name(), argnum + 1, in codegen_arg()
/dports/graphics/py-openshadinglanguage/OpenShadingLanguage-Release-1.11.15.0/src/liboslcomp/
H A Dcodegen.cpp1991 Symbol* origarg = thisarg; in codegen_arg() local
1994 if (thisarg != origarg && form in codegen_arg()
1995 && !equivalent(origarg->typespec(), form->typespec()) in codegen_arg()
2000 origarg->typespec(), origarg->name(), argnum + 1, in codegen_arg()
/dports/science/liggghts/LIGGGHTS-PUBLIC-3.8.0-26-g6e873439/src/
H A Dset.cpp138 int allcount,origarg; in command() local
144 origarg = iarg; in command()
659 allcount,arg[origarg]); in command()
661 allcount,arg[origarg]); in command()
/dports/databases/rrdtool/rrdtool-1.7.2/src/
H A Drrd_graph_helper.c210 int parseArguments(const char* origarg, parsedargs_t* pa) { in parseArguments() argument
213 pa->arg=strdup(origarg); in parseArguments()
215 pa->arg_orig=origarg; in parseArguments()
/dports/irc/scrollz/ScrollZ-ScrollZ-2.3/source/
H A Dwindow.c3333 char *origarg = arg; local
3335 while ((arg = strtok(origarg, ","))) {
3336 origarg = (char *) 0;
/dports/lang/ruby26/ruby-2.6.9/doc/
H A DChangeLog-1.9.33599 * ruby.c (origarg): remove len field. It's no longer used.