Home | History | Annotate | Download | only in libril

Lines Matching defs:string8

7538         char* string8 = NULL;
7568 string8 = (char*) malloc((infoRec->rec.display.alpha_len + 1) * sizeof(char));
7569 if (string8 == NULL) {
7574 memcpy(string8, infoRec->rec.display.alpha_buf, infoRec->rec.display.alpha_len);
7575 string8[(int)infoRec->rec.display.alpha_len] = '\0';
7578 record->display[0].alphaBuf = string8;
7579 free(string8);
7580 string8 = NULL;
7593 string8 = (char*) malloc((infoRec->rec.number.len + 1) * sizeof(char));
7594 if (string8 == NULL) {
7599 memcpy(string8, infoRec->rec.number.buf, infoRec->rec.number.len);
7600 string8[(int)infoRec->rec.number.len] = '\0';
7603 record->number[0].number = string8;
7604 free(string8);
7605 string8 = NULL;
7631 string8 = (char*) malloc((infoRec->rec.redir.redirectingNumber.len + 1) *
7633 if (string8 == NULL) {
7638 memcpy(string8, infoRec->rec.redir.redirectingNumber.buf,
7640 string8[(int)infoRec->rec.redir.redirectingNumber.len] = '\0';
7643 record->redir[0].redirectingNumber.number = string8;
7644 free(string8);
7645 string8 = NULL;