Lines Matching refs:temp
91 static char temp[1024];
93 char* p = temp;
118 return temp;
1615 unsigned char temp[256];
1641 len = smspdu_get_text_message( pdu, temp, sizeof(temp)-1 );
1642 if (len > sizeof(temp)-1 )
1643 len = sizeof(temp)-1;
1644 fprintf( out, "'%.*s'\n", len, temp );
1653 char temp[16];
1677 numlen = sms_address_to_str( &address, temp, sizeof(temp) );
1678 if (numlen > sizeof(temp)-1)
1680 temp[numlen] = 0;
1683 if (numlen == 10 && !strncmp(temp, PHONE_PREFIX+1, 6)) {
1685 memcpy( number+1, temp, numlen );
1687 } else if (numlen == 7 && !strncmp(temp, PHONE_PREFIX+4, 3)) {
1689 memcpy( number+4, temp, numlen );
1693 memcpy( number+7, temp, numlen );
1696 memcpy( number, temp, numlen );
1721 char temp[12];
1725 snprintf( temp, sizeof(temp), PHONE_PREFIX "%d", modem->base_port );
1726 temp, strlen(temp) );