Home
last modified time | relevance | path

Searched refs:objectType (Results 1 – 6 of 6) sorted by relevance

/TwlSDK-5.1.0/build/tools/makelcf.TWL/
Dmakelcf.h56 #define isNeedSection(obj) ((obj)->objectType != OBJTYPE_OBJECT)
63 tObjectType objectType; member
143 BOOL OverlayAddObject(const char *objectName, tObjectType objectType);
145 BOOL OverlayAddLibrary(const char *objectName, tObjectType objectType);
151 BOOL StaticAddObject(const char *objectName, tObjectType objectType);
153 BOOL StaticAddLibrary(const char *objectName, tObjectType objectType);
Dcontainer.c297 BOOL AddObject(tObjectList * list, const char *objectName, tObjectType objectType) in AddObject() argument
302 t->objectType = objectType; in AddObject()
348 BOOL OverlayAddObject(const char *objectName, tObjectType objectType) in OverlayAddObject() argument
350 return AddObject(&CurrentOverlay->tail->objects, objectName, objectType); in OverlayAddObject()
364 BOOL OverlayAddLibrary(const char *objectName, tObjectType objectType) in OverlayAddLibrary() argument
366 return AddObject(&CurrentOverlay->tail->libraries, objectName, objectType); in OverlayAddLibrary()
437 BOOL StaticAddObject(const char *objectName, tObjectType objectType) in StaticAddObject() argument
439 return AddObject(&Static.objects, objectName, objectType); in StaticAddObject()
453 BOOL StaticAddLibrary(const char *objectName, tObjectType objectType) in StaticAddLibrary() argument
455 return AddObject(&Static.libraries, objectName, objectType); in StaticAddLibrary()
Dcreatelcf.c385 if (obj->objectType == OBJTYPE_FILE) in isObjectOK()
/TwlSDK-5.1.0/build/tools/makelcf/
Dmakelcf.h141 #define isNeedSection(obj) ((obj)->objectType != OBJTYPE_OBJECT)
148 tObjectType objectType; member
246 BOOL OverlayAddObject(const char *objectName, tObjectType objectType);
248 BOOL OverlayAddLibrary(const char *objectName, tObjectType objectType);
255 BOOL StaticAddObject(const char *objectName, tObjectType objectType);
257 BOOL StaticAddLibrary(const char *objectName, tObjectType objectType);
Dcontainer.c341 BOOL AddObject(tObjectList * list, const char *objectName, tObjectType objectType) in AddObject() argument
346 t->objectType = objectType; in AddObject()
392 BOOL OverlayAddObject(const char *objectName, tObjectType objectType) in OverlayAddObject() argument
394 return AddObject(&CurrentOverlay->tail->objects, objectName, objectType); in OverlayAddObject()
408 BOOL OverlayAddLibrary(const char *objectName, tObjectType objectType) in OverlayAddLibrary() argument
410 return AddObject(&CurrentOverlay->tail->libraries, objectName, objectType); in OverlayAddLibrary()
492 BOOL StaticAddObject(const char *objectName, tObjectType objectType) in StaticAddObject() argument
494 return AddObject(&Static.objects, objectName, objectType); in StaticAddObject()
508 BOOL StaticAddLibrary(const char *objectName, tObjectType objectType) in StaticAddLibrary() argument
510 return AddObject(&Static.libraries, objectName, objectType); in StaticAddLibrary()
Dcreatelcf.c437 if (obj->objectType == OBJTYPE_FILE) in isObjectOK()