• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/vms/

Lines Matching defs:work_str

374     struct dsc$descriptor_d work_str;
377 init_dyndesc(work_str);
403 str$concat(&work_str, &zip_command, &foreign_cmdline);
404 status = cli$dcl_parse(&work_str, &zip_clitable, lib$get_input,
474 status = cli$get_value(&cli_level, &work_str);
475 status = ots$cvt_tu_l(&work_str, &binval);
675 if ((status = cli$get_value(&cli_encrypt, &work_str)) & 1) {
678 cmdl_len += work_str.dsc$w_length + 4;
681 strncpy(&the_cmd_line[x+3], work_str.dsc$a_pointer,
682 work_str.dsc$w_length);
918 status = cli$get_value(&cli_batch, &work_str);
921 work_str.dsc$a_pointer[work_str.dsc$w_length] = '\0';
922 if ((stdin = freopen(work_str.dsc$a_pointer, "r", stdin)) == NULL)
925 work_str.dsc$a_pointer);
955 status = cli$get_value(&cli_temp_path, &work_str);
957 cmdl_len += work_str.dsc$w_length + 4;
960 strncpy(&the_cmd_line[x+3], work_str.dsc$a_pointer,
961 work_str.dsc$w_length);
968 status = cli$get_value(&cli_output, &work_str);
970 cmdl_len += work_str.dsc$w_length + 4;
973 strncpy(&the_cmd_line[x+3], work_str.dsc$a_pointer,
974 work_str.dsc$w_length);
1013 status = cli$get_value( &cli_display_dots, &work_str);
1021 if (work_str.dsc$w_length > 0) {
1028 cmdl_len += work_str.dsc$w_length+ 1;
1031 work_str.dsc$a_pointer, work_str.dsc$w_length);
1086 status = cli$get_value(&cli_log_file_file, &work_str);
1088 cmdl_len += strlen( OPT_LF)+ 2+ work_str.dsc$w_length;
1091 strncpy(&the_cmd_line[x+strlen( OPT_LF)+ 1], work_str.dsc$a_pointer,
1092 work_str.dsc$w_length);
1141 status = cli$get_value( &cli_split_size, &work_str);
1149 cmdl_len += work_str.dsc$w_length+ 1;
1151 work_str.dsc$a_pointer, work_str.dsc$w_length);
1282 status = cli$get_value(&cli_test_unzip, &work_str);
1284 cmdl_len += strlen( OPT_TT)+ 2+ work_str.dsc$w_length;
1287 strncpy(&the_cmd_line[x+strlen( OPT_TT)+ 1], work_str.dsc$a_pointer,
1288 work_str.dsc$w_length);
1420 status = cli$get_value(&cli_zipfile, &work_str);
1423 cmdl_len += work_str.dsc$w_length + 1;
1425 strncpy(&the_cmd_line[x], work_str.dsc$a_pointer,
1426 work_str.dsc$w_length);
1448 status = cli$get_value(&cli_exlist, &work_str);
1450 cmdl_len += work_str.dsc$w_length + 4;
1453 strncpy(&the_cmd_line[x+3], work_str.dsc$a_pointer,
1454 work_str.dsc$w_length);
1480 status = cli$get_value(&cli_inlist, &work_str);
1482 cmdl_len += work_str.dsc$w_length + 4;
1485 strncpy(&the_cmd_line[x+3], work_str.dsc$a_pointer,
1486 work_str.dsc$w_length);
1592 struct dsc$descriptor_d work_str;
1594 init_dyndesc(work_str);
1616 while ((status = cli$get_value(qual, &work_str)) & 1) {
1618 len += work_str.dsc$w_length + 1;
1627 str$find_first_substring(rawtail, &ind, &sind, &work_str);
1635 src = work_str.dsc$a_pointer;
1637 for (x = 0; x < work_str.dsc$w_length; x++) {