HomeSort by relevance Sort by last modified time
    Searched refs:newargv (Results 1 - 17 of 17) sorted by null

  /external/quake/quake/src/WinQuake/
sys_wind.cpp 268 char *newargv[256]; variable
293 memcpy (newargv, argv, argc*4);
294 newargv[argc] = "-dedicated";
296 argv = newargv;
  /external/iptables/iptables/
ip6tables-restore.c 91 static char *newargv[255]; variable
94 /* function adding one argument to newargv, updating newargc
98 if (what && newargc + 1 < ARRAY_SIZE(newargv)) {
99 newargv[newargc] = strdup(what);
113 free(newargv[i]);
333 /* reset the newargv */
441 DEBUGP("argv[%u]: %s\n", a, newargv[a]);
443 ret = do_command6(newargc, newargv,
444 &newargv[2], &handle);
iptables-restore.c 91 static char *newargv[255]; variable
94 /* function adding one argument to newargv, updating newargc
98 if (what && newargc + 1 < ARRAY_SIZE(newargv)) {
99 newargv[newargc] = strdup(what);
113 free(newargv[i]);
338 /* reset the newargv */
446 DEBUGP("argv[%u]: %s\n", a, newargv[a]);
448 ret = do_command4(newargc, newargv,
449 &newargv[2], &handle);
iptables-xml.c 79 static char *newargv[255]; variable
105 /* funCtion adding one argument to newargv, updating newargc
111 if (what && newargc + 1 < ARRAY_SIZE(newargv)) {
112 newargv[newargc] = strdup(what);
126 free(newargv[i]);
127 newargv[i] = NULL;
150 oldargv[i] = newargv[i];
151 newargv[i] = NULL;
540 if (isTarget(oldargv[old]) && isTarget(newargv[new])) {
557 if (strcmp(oldargv[old], newargv[new]) != 0)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/
SDLMain.m 257 char **newargv;
271 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
272 if (newargv == NULL)
277 gArgv = newargv;
  /external/qemu/distrib/sdl-1.2.15/src/main/macosx/
SDLMain.m 256 char **newargv;
270 newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2));
271 if (newargv == NULL)
276 gArgv = newargv;
  /system/core/libcutils/
zygote.c 185 const char **newargv = argv; local
207 pid = send_request(fd, 0, newargc, newargv);
  /external/quake/quake/src/QW/server/
sys_win.c 193 char *newargv[256]; variable
  /external/openssh/
scp.c 372 char *targ, **newargv; local
381 newargv = xcalloc(MAX(argc + 1, 1), sizeof(*newargv));
383 newargv[n] = xstrdup(argv[n]);
384 argv = newargv;

Completed in 2486 milliseconds