Searched refs:returnValue (Results 1 – 10 of 10) sorted by relevance
| /netbsd/src/external/gpl3/gcc/dist/libobjc/ |
| D | protocols.c | 96 Protocol **returnValue = NULL; in objc_copyProtocolList() local 114 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1))); in objc_copyProtocolList() 120 returnValue[i] = node->value; in objc_copyProtocolList() 125 returnValue[i] = NULL; in objc_copyProtocolList() 132 return returnValue; in objc_copyProtocolList() 211 Protocol **returnValue = NULL; in class_copyProtocolList() local 239 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1))); in class_copyProtocolList() 249 returnValue[i] = (Protocol *)proto_list->list[j]; in class_copyProtocolList() 255 returnValue[i] = NULL; in class_copyProtocolList() 262 return returnValue; in class_copyProtocolList() [all …]
|
| D | encoding.c | 838 char *returnValue; in method_copyReturnType() local 853 returnValue = malloc (sizeof (char) * returnValueSize); in method_copyReturnType() 854 memcpy (returnValue, method->method_types, returnValueSize); in method_copyReturnType() 855 returnValue[returnValueSize - 1] = '\0'; in method_copyReturnType() 857 return returnValue; in method_copyReturnType() 868 char *returnValue; in method_copyArgumentType() local 903 returnValue = malloc (sizeof (char) * returnValueSize); in method_copyArgumentType() 904 memcpy (returnValue, returnValueStart, returnValueSize); in method_copyArgumentType() 905 returnValue[returnValueSize - 1] = '\0'; in method_copyArgumentType() 907 return returnValue; in method_copyArgumentType() [all …]
|
| D | selector.c | 294 SEL returnValue = NULL; in sel_getTypedSelector() local 302 if (returnValue == NULL) in sel_getTypedSelector() 307 returnValue = s; in sel_getTypedSelector() 316 if (returnValue->sel_types == s->sel_types) in sel_getTypedSelector() 318 else if (sel_types_match (returnValue->sel_types, s->sel_types)) in sel_getTypedSelector() 331 if (returnValue != NULL) in sel_getTypedSelector() 334 return returnValue; in sel_getTypedSelector() 347 SEL *returnValue = NULL; in sel_copyTypedSelectorList() local 376 returnValue = (SEL *)(malloc (sizeof (SEL) * (count + 1))); in sel_copyTypedSelectorList() 383 returnValue[j] = (SEL)(selector_list->head); in sel_copyTypedSelectorList() [all …]
|
| D | ivars.c | 89 object_getInstanceVariable (id object, const char *name, void **returnValue) in object_getInstanceVariable() argument 97 if (variable != NULL && returnValue != NULL) in object_getInstanceVariable() 101 *returnValue = *((id *)location); in object_getInstanceVariable() 179 struct objc_ivar **returnValue = NULL; in class_copyIvarList() local 198 returnValue = (struct objc_ivar **)(malloc (sizeof (struct objc_ivar *) * (count + 1))); in class_copyIvarList() 202 returnValue[i] = &(ivar_list->ivar_list[i]); in class_copyIvarList() 204 returnValue[i] = NULL; in class_copyIvarList() 210 return returnValue; in class_copyIvarList()
|
| D | methods.c | 71 struct objc_method **returnValue = NULL; in class_copyMethodList() local 99 returnValue in class_copyMethodList() 111 returnValue[i] = &(method_list->method_list[j]); in class_copyMethodList() 117 returnValue[i] = NULL; in class_copyMethodList() 125 return returnValue; in class_copyMethodList()
|
| D | class.c | 510 objc_getClassList (Class *returnValue, int maxNumberOfClassesToReturn) in objc_getClassList() argument 521 if (returnValue) in objc_getClassList() 524 returnValue[count] = node->pointer; in objc_getClassList()
|
| /netbsd/src/usr.bin/telnet/ |
| D | sys_bsd.c | 562 int returnValue = 0; in process_rings() local 615 returnValue = 1; in process_rings() 647 returnValue = 1; /* did something useful */ in process_rings() 651 returnValue |= netflush(); in process_rings() 658 returnValue |= (ttyflush(SYNCHing|flushout) > 0); in process_rings() 661 return returnValue; in process_rings()
|
| D | telnet.c | 1605 int returnValue = 0; in telrcv() local 1613 returnValue = 1; in telrcv() 1825 return returnValue||count; in telrcv() 1847 int returnValue = 0; in telsnd() local 1859 returnValue = 1; in telsnd() 1980 return returnValue||count; /* Non-zero if we did anything */ in telsnd() 2001 int returnValue; in Scheduler() local 2026 returnValue = process_rings(netin, netout, netex, ttyin, ttyout, !block); in Scheduler() 2031 returnValue |= telsnd(); in Scheduler() 2035 returnValue |= telrcv(); in Scheduler() [all …]
|
| /netbsd/src/sys/fs/udf/ |
| D | udf_osta.c | 52 int returnValue, unicodeIndex, byteIndex; in udf_UncompressUnicode() local 65 returnValue = -1; in udf_UncompressUnicode() 88 returnValue = unicodeIndex; in udf_UncompressUnicode() 90 return(returnValue); in udf_UncompressUnicode()
|
| /netbsd/src/external/gpl3/gcc/dist/libobjc/objc/ |
| D | runtime.h | 294 objc_EXPORT Ivar object_getInstanceVariable (id object, const char *name, void **returnValue); 481 objc_EXPORT int objc_getClassList (Class *returnValue, int maxNumberOfClassesToReturn); 761 objc_EXPORT void method_getReturnType (Method method, char *returnValue, 776 char *returnValue, size_t returnValueSize);
|