Home
last modified time | relevance | path

Searched refs:tmp_comment (Results 1 – 11 of 11) sorted by relevance

/dports/net/kamailio/kamailio-5.4.5/src/modules/carrierroute/
H A Dcr_db.c274 tmp_rewrite_suffix, tmp_host_name, tmp_reply_code, tmp_comment; in load_route_data_db() local
375 tmp_comment.s = (char *)row->values[COL_COMMENT].val.string_val; in load_route_data_db()
376 if (tmp_comment.s==NULL) tmp_comment.s=""; in load_route_data_db()
377 tmp_comment.len=strlen(tmp_comment.s); in load_route_data_db()
378 p_tmp_comment = &tmp_comment; in load_route_data_db()
451 tmp_comment.s = (char *)row->values[FCOL_COMMENT].val.string_val; in load_route_data_db()
452 if (tmp_comment.s==NULL) tmp_comment.s=""; in load_route_data_db()
453 tmp_comment.len=strlen(tmp_comment.s); in load_route_data_db()
454 p_tmp_comment = &tmp_comment; in load_route_data_db()
H A Dcr_rpc_helper.c488 str tmp_comment = str_init(""); in update_route_data() local
543 opts->status, opts->hash_index, -1, NULL, &tmp_comment) < 0) { in update_route_data()
/dports/misc/vxl/vxl-3.3.2/core/vil1/file_formats/
H A Dvil1_viff_support.c95 tmp_comment[LENGTH]; in vil1_viff_createimage() local
114 strncpy(tmp_comment, comment?comment:"", LENGTH); in vil1_viff_createimage()
115 tmp_comment[LENGTH - 1] = '\0'; in vil1_viff_createimage()
125 strncpy(image->comment, tmp_comment, LENGTH); in vil1_viff_createimage()
/dports/archivers/arj/debian/patches/
H A Dsecurity_format.patch100 strcat(tmp_comment, tmp_cmtline);
101 - strcat(tmp_comment, lf);
102 + strcat(tmp_comment, "\n");
107 strcat(tmp_comment, tmp_cmtline);
108 - strcat(tmp_comment, lf);
109 + strcat(tmp_comment, "\n");
/dports/textproc/csvdiff/csvdiff-1.7_1/
H A Dcsvdiff.pl686 my ($tmp_file, $tmp_required, $tmp_comment) = @_;
696 print STDERR " $tmp_comment is unreadable\n";
702 print STDERR " $tmp_comment doesn't exist\n";
709 print STDERR " $tmp_comment is needed! ->Exit\n";
/dports/archivers/arj/arj-3.10.22/
H A Darj_arcv.c132 tmp_comment=malloc_msg(COMMENT_MAX); in replicate_comment()
141 if(tmp_comment!=NULL) in dump_tmp_comment()
144 free(tmp_comment); in dump_tmp_comment()
458 to_7bit(tmp_comment); in read_header()
868 strcat(tmp_comment, buffer); in read_comment()
906 tmp_comment[0]='\0'; in supply_comment()
915 strcat(tmp_comment, tmp_cmtline); in supply_comment()
916 strcat(tmp_comment, "\n"); in supply_comment()
921 strcat(tmp_comment, tmp_cmtline); in supply_comment()
922 strcat(tmp_comment, "\n"); in supply_comment()
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/sql/
H A Dsql_db.cc291 char *tmp_comment= NULL; in put_dbopt() local
294 &tmp_comment, (uint) DATABASE_COMMENT_MAXLEN+1, in put_dbopt()
304 opt->comment.str= tmp_comment; in put_dbopt()
/dports/databases/mariadb105-server/mariadb-10.5.15/sql/
H A Dsql_db.cc291 char *tmp_comment= NULL; in put_dbopt() local
294 &tmp_comment, (uint) DATABASE_COMMENT_MAXLEN+1, in put_dbopt()
304 opt->comment.str= tmp_comment; in put_dbopt()
/dports/biology/fasta3/fasta-36.3.8/src/
H A Dcompacc2.c1905 char ctmp_label, ctmp_value, tmp_comment[MAX_STR], annot_acc[MAX_STR]; in next_annot_entry() local
1938 tmp_comment[0] = '\0'; in next_annot_entry()
1947 strncpy(tmp_comment,bp+1,sizeof(tmp_comment)); in next_annot_entry()
1963 if (tmp_comment[0]) { in next_annot_entry()
1964 …if ((tmp_ann_entry_arr[n_annot].comment=(char *)calloc(strlen(tmp_comment)+1,sizeof(char)))!=NULL)… in next_annot_entry()
1965 strncpy(tmp_ann_entry_arr[n_annot].comment,tmp_comment,strlen(tmp_comment)); in next_annot_entry()
H A Dcompacc2e.c1912 char ctmp_label, ctmp_value, tmp_comment[MAX_STR], annot_acc[MAX_STR]; in next_annot_entry() local
1952 tmp_comment[0] = '\0'; in next_annot_entry()
1961 strncpy(tmp_comment,bp+1,sizeof(tmp_comment)); in next_annot_entry()
1988 if (tmp_comment[0]) { in next_annot_entry()
1989 …if ((tmp_ann_entry_arr[n_annot].comment=(char *)calloc(strlen(tmp_comment)+1,sizeof(char)))!=NULL)… in next_annot_entry()
1990 strncpy(tmp_ann_entry_arr[n_annot].comment,tmp_comment,strlen(tmp_comment)); in next_annot_entry()
/dports/biology/ncbi-toolkit/ncbi/sequin/
H A Dsequin2.c7623 CharPtr comment, comment_loc, total_comment = NULL, tmp_comment; in AddCodingRegionFieldsFromProteinTitle() local
7660tmp_comment = (CharPtr) MemNew ((StringLen (total_comment) + StringLen (comment) + 3) * sizeof (Ch… in AddCodingRegionFieldsFromProteinTitle()
7661 if (tmp_comment != NULL) in AddCodingRegionFieldsFromProteinTitle()
7663 StringCpy (tmp_comment, total_comment); in AddCodingRegionFieldsFromProteinTitle()
7664 StringCat (tmp_comment, ";"); in AddCodingRegionFieldsFromProteinTitle()
7665 StringCat (tmp_comment, comment); in AddCodingRegionFieldsFromProteinTitle()
7667 total_comment = tmp_comment; in AddCodingRegionFieldsFromProteinTitle()