pos               994 src/ftmod/ftmod_isdn/ftmod_isdn.c 							int pos;
pos              1002 src/ftmod/ftmod_isdn/ftmod_isdn.c 							pos = (int)strlen(ftdmchan->caller_data.dnis.digits);
pos              1003 src/ftmod/ftmod_isdn/ftmod_isdn.c 							strcat(&ftdmchan->caller_data.dnis.digits[pos],    (char *)callednum->Digit);
pos                82 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c static ftdm_status_t extract_span_chan(char *argv[10], int pos, int *span, int *chan);
pos              1864 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c static ftdm_status_t extract_span_chan(char *argv[10], int pos, int *span, int *chan)
pos              1867 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 	if (!strcasecmp(argv[pos], "span")) {
pos              1869 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 		pos++;
pos              1870 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 		*span = atoi(argv[pos]);
pos              1872 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 		pos++;
pos              1873 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 		if (!strcasecmp(argv[pos], "chan")) {
pos              1875 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 			pos++;
pos              1876 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 			*chan = atoi(argv[pos]);
pos              1886 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 		*span = atoi(argv[pos]);
pos              1888 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 		pos++;
pos              1889 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 		if (!strcasecmp(argv[pos], "chan")) {
pos              1891 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 			pos++;
pos              1892 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c 			*chan = atoi(argv[pos]);
pos               275 src/hashtable.c 			i->pos++;
pos               279 src/hashtable.c 	while(i->pos < i->h->tablelength && !i->h->table[i->pos]) {
pos               280 src/hashtable.c 		i->pos++;
pos               283 src/hashtable.c 	if (i->pos >= i->h->tablelength) {
pos               287 src/hashtable.c 	if ((i->e = i->h->table[i->pos]) != 0) { 
pos               296 src/hashtable.c 	h->iterator.pos = 0;
pos                22 src/include/private/hashtable_private.h 	unsigned int pos;
pos               518 src/isdn/Q921.c 	int pos    = 0;
pos               521 src/isdn/Q921.c 	buf[pos++] = '[';
pos               524 src/isdn/Q921.c 	while((bsize - pos) > 0 && offset < len) {
pos               525 src/isdn/Q921.c 		buf[pos++] = hex[(in[offset] & 0xF0) >> 4];
pos               526 src/isdn/Q921.c 		buf[pos++] = hex[(in[offset++]   & 0x0F)];
pos               528 src/isdn/Q921.c 		if(++nr == 32 && offset < len && (bsize - pos) > 3) {
pos               530 src/isdn/Q921.c 			buf[pos++] = ']';
pos               531 src/isdn/Q921.c 			buf[pos++] = '\n';
pos               532 src/isdn/Q921.c 			buf[pos++] = '[';
pos               535 src/isdn/Q921.c 			buf[pos++] = ' ';
pos               539 src/isdn/Q921.c 	buf[pos++] = ']';
pos               540 src/isdn/Q921.c 	buf[pos++] = '\n';
pos               541 src/isdn/Q921.c 	buf[pos]   = '\0';
pos               543 src/isdn/Q921.c 	return pos;
pos                81 src/isdn/include/mfifo.h unsigned char * MFIFOGetMesPtrOffset(unsigned char *buf, int *size, const int pos);
pos               311 src/isdn/mfifo.c unsigned char * MFIFOGetMesPtrOffset(unsigned char *buf, int *size, const int pos)
pos               320 src/isdn/mfifo.c 	if (pos < 0 || pos >= mf->ixsize) {
pos               324 src/isdn/mfifo.c 	x = pos - mf->last;