Searched refs:command_length (Results 1 - 2 of 2) sorted by relevance

/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Djavacomp.c103 unsigned int command_length; local
115 command_length = strlen (javac);
117 command_length += 3;
119 command_length += 3;
121 command_length += 4 + shell_quote_length (directory);
123 command_length += 1 + shell_quote_length (java_sources[i]);
124 command_length += 1;
126 command = (char *) xallocsa (command_length);
154 /* Ensure command_length was correctly calculated. */
155 if (p - command > command_length)
[all...]
H A Djavaexec.c140 unsigned int command_length; local
151 command_length = strlen (java);
152 command_length += 1 + shell_quote_length (class_name);
154 command_length += 1 + shell_quote_length (*arg);
155 command_length += 1;
157 command = (char *) xallocsa (command_length);
171 /* Ensure command_length was correctly calculated. */
172 if (p - command > command_length)

Completed in 108 milliseconds