Home
last modified time | relevance | path

Searched refs:returnValue (Results 1 – 10 of 10) sorted by relevance

/dragonfly/contrib/gcc-4.7/libobjc/
H A Dprotocols.c96 Protocol **returnValue = NULL; in objc_copyProtocolList() local
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
255 returnValue[i] = NULL; in class_copyProtocolList()
262 return returnValue; in class_copyProtocolList()
453 return returnValue; in protocol_copyMethodDescriptionList()
498 return returnValue; in protocol_copyPropertyList()
550 returnValue[i] = NULL; in protocol_copyProtocolList()
[all …]
H A Dencoding.c808 char *returnValue; in method_copyReturnType() local
825 returnValue[returnValueSize - 1] = '\0'; in method_copyReturnType()
827 return returnValue; in method_copyReturnType()
838 char *returnValue; in method_copyArgumentType() local
875 returnValue[returnValueSize - 1] = '\0'; in method_copyArgumentType()
877 return returnValue; in method_copyArgumentType()
884 if (returnValue == NULL || returnValueSize == 0) in method_getReturnType()
889 memset (returnValue, 0, returnValueSize); in method_getReturnType()
915 char *returnValue, size_t returnValueSize) in method_getArgumentType() argument
917 if (returnValue == NULL || returnValueSize == 0) in method_getArgumentType()
[all …]
H A Dselector.c295 SEL returnValue = NULL; in sel_getTypedSelector() local
303 if (returnValue == NULL) in sel_getTypedSelector()
308 returnValue = s; in sel_getTypedSelector()
317 if (returnValue->sel_types == s->sel_types) in sel_getTypedSelector()
332 if (returnValue != NULL) in sel_getTypedSelector()
335 return returnValue; in sel_getTypedSelector()
348 SEL *returnValue = NULL; in sel_copyTypedSelectorList() local
377 returnValue = (SEL *)(malloc (sizeof (SEL) * (count + 1))); in sel_copyTypedSelectorList()
384 returnValue[j] = (SEL)(selector_list->head); in sel_copyTypedSelectorList()
387 returnValue[j] = NULL; in sel_copyTypedSelectorList()
[all …]
H A Divars.c89 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()
H A Dmethods.c71 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()
H A Dclass.c509 objc_getClassList (Class *returnValue, int maxNumberOfClassesToReturn) in objc_getClassList() argument
520 if (returnValue) in objc_getClassList()
523 returnValue[count] = node->pointer; in objc_getClassList()
/dragonfly/sys/vfs/udf/
H A Dosta.c42 int returnValue, unicodeIndex, byteIndex; in udf_UncompressUnicode() local
49 returnValue = -1; in udf_UncompressUnicode()
72 returnValue = unicodeIndex; in udf_UncompressUnicode()
74 return(returnValue); in udf_UncompressUnicode()
88 int returnValue, unicodeIndex, byteIndex; in udf_UncompressUnicodeByte() local
95 returnValue = -1; in udf_UncompressUnicodeByte()
117 returnValue = unicodeIndex; in udf_UncompressUnicodeByte()
119 return(returnValue); in udf_UncompressUnicodeByte()
/dragonfly/contrib/gcc-4.7/libobjc/objc/
H A Druntime.h294 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);
/dragonfly/usr.bin/telnet/
H A Dtelnet.c1625 int returnValue = 0; in telrcv() local
1633 returnValue = 1; in telrcv()
1844 return returnValue||count; in telrcv()
1866 int returnValue = 0; in telsnd() local
1878 returnValue = 1; in telsnd()
1999 return returnValue||count; /* Non-zero if we did anything */ in telsnd()
2018 int returnValue; in Scheduler() local
2041 returnValue = process_rings(netin, netout, netex, ttyin, ttyout, !block); in Scheduler()
2046 returnValue |= telsnd(); in Scheduler()
2050 returnValue |= telrcv(); in Scheduler()
[all …]
H A Dsys_bsd.c917 int returnValue = 0; in process_rings() local
1097 returnValue = 1; in process_rings()
1125 returnValue = 1; /* did something useful */ in process_rings()
1130 returnValue |= netflush(); in process_rings()
1134 returnValue |= (ttyflush(SYNCHing|flushout) > 0); in process_rings()
1137 return returnValue; in process_rings()