code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
/* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above cop...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/fuzz/fuzz.c
C
unknown
4,112
/* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above cop...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/fuzz/lwipopts.h
C
unknown
3,061
#!/bin/bash if [ -z "$1" ] then echo "This script will make pcap files from the afl-fuzz crash/hang files" echo "It needs hexdump and text2pcap" echo "Please give output directory as argument" exit 2 fi for i in `ls $1/crashes/id*` do PCAPNAME=`echo $i | grep pcap` if [ -z "$PCAPNAME" ]; then he...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/fuzz/output_to_pcap.sh
Shell
unknown
626
#include "test_mem.h" #include "lwip/mem.h" #include "lwip/stats.h" #if !LWIP_STATS || !MEM_STATS #error "This tests needs MEM-statistics enabled" #endif #if LWIP_DNS #error "This test needs DNS turned off (as it mallocs on init)" #endif /* Setups/teardown functions */ static void mem_setup(void) { ...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/core/test_mem.c
C
unknown
2,567
#ifndef LWIP_HDR_TEST_MEM_H #define LWIP_HDR_TEST_MEM_H #include "../lwip_check.h" Suite *mem_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/core/test_mem.h
C
unknown
125
#include "test_pbuf.h" #include "lwip/pbuf.h" #include "lwip/stats.h" #if !LWIP_STATS || !MEM_STATS ||!MEMP_STATS #error "This tests needs MEM- and MEMP-statistics enabled" #endif #if LWIP_DNS #error "This test needs DNS turned off (as it mallocs on init)" #endif #if !LWIP_TCP || !TCP_QUEUE_OOSEQ || !LWIP_...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/core/test_pbuf.c
C
unknown
6,893
#ifndef LWIP_HDR_TEST_PBUF_H #define LWIP_HDR_TEST_PBUF_H #include "../lwip_check.h" Suite *pbuf_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/core/test_pbuf.h
C
unknown
128
#include "test_dhcp.h" #include "lwip/netif.h" #include "lwip/dhcp.h" #include "lwip/prot/dhcp.h" #include "lwip/etharp.h" #include "netif/ethernet.h" struct netif net_test; static const u8_t broadcast[6] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; static const u8_t magic_cookie[] = { 0x63, 0x82, 0x53, 0x...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/dhcp/test_dhcp.c
C
unknown
40,116
#ifndef LWIP_HDR_TEST_DHCP_H #define LWIP_HDR_TEST_DHCP_H #include "../lwip_check.h" Suite* dhcp_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/dhcp/test_dhcp.h
C
unknown
128
#include "test_etharp.h" #include "lwip/udp.h" #include "lwip/etharp.h" #include "netif/ethernet.h" #include "lwip/stats.h" #if !LWIP_STATS || !UDP_STATS || !MEMP_STATS || !ETHARP_STATS #error "This tests needs UDP-, MEMP- and ETHARP-statistics enabled" #endif #if !ETHARP_SUPPORT_STATIC_ENTRIES #error "Thi...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/etharp/test_etharp.c
C
unknown
8,036
#ifndef LWIP_HDR_TEST_ETHARP_H #define LWIP_HDR_TEST_ETHARP_H #include "../lwip_check.h" Suite* etharp_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/etharp/test_etharp.h
C
unknown
134
#include "test_ip4.h" #include "lwip/ip4.h" #include "lwip/inet_chksum.h" #include "lwip/stats.h" #include "lwip/prot/ip.h" #include "lwip/prot/ip4.h" #if !LWIP_IPV4 || !IP_REASSEMBLY || !MIB2_STATS || !IPFRAG_STATS #error "This tests needs LWIP_IPV4, IP_REASSEMBLY; MIB2- and IPFRAG-statistics enabled" #end...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/ip4/test_ip4.c
C
unknown
4,956
#ifndef LWIP_HDR_TEST_IP4_H #define LWIP_HDR_TEST_IP4_H #include "../lwip_check.h" Suite* ip4_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/ip4/test_ip4.h
C
unknown
125
#ifndef LWIP_HDR_LWIP_CHECK_H #define LWIP_HDR_LWIP_CHECK_H /* Common header file for lwIP unit tests using the check framework */ #include <config.h> #include <check.h> #include <stdlib.h> #define FAIL_RET() do { fail(); return; } while(0) #define EXPECT(x) fail_unless(x) #define EXPECT_RET(x) do { fail_...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/lwip_check.h
C
unknown
1,096
#include "lwip_check.h" #include "ip4/test_ip4.h" #include "udp/test_udp.h" #include "tcp/test_tcp.h" #include "tcp/test_tcp_oos.h" #include "core/test_mem.h" #include "core/test_pbuf.h" #include "etharp/test_etharp.h" #include "dhcp/test_dhcp.h" #include "mdns/test_mdns.h" #include "lwip/init.h" Suite...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/lwip_unittests.c
C
unknown
1,676
/* * Copyright (c) 2001-2003 Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above cop...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/lwipopts.h
C
unknown
3,004
/* * Copyright (c) 2015 Verisure Innovation AB * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * th...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/mdns/test_mdns.c
C
unknown
29,422
#ifndef LWIP_HDR_TEST_MDNS_H__ #define LWIP_HDR_TEST_MDNS_H__ #include "../lwip_check.h" Suite* mdns_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/mdns/test_mdns.h
C
unknown
132
#include "tcp_helper.h" #include "lwip/priv/tcp_priv.h" #include "lwip/stats.h" #include "lwip/pbuf.h" #include "lwip/inet_chksum.h" #include "lwip/ip_addr.h" #if !LWIP_STATS || !TCP_STATS || !MEMP_STATS #error "This tests needs TCP- and MEMP-statistics enabled" #endif /** Remove all pcbs on the given li...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/tcp/tcp_helper.c
C
unknown
10,139
#ifndef LWIP_HDR_TCP_HELPER_H #define LWIP_HDR_TCP_HELPER_H #include "../lwip_check.h" #include "lwip/arch.h" #include "lwip/tcp.h" #include "lwip/netif.h" /* counters used for test_tcp_counters_* callback functions */ struct test_tcp_counters { u32_t recv_calls; u32_t recved_bytes; u32_t recv_calls...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/tcp/tcp_helper.h
C
unknown
1,855
#include "test_tcp.h" #include "lwip/priv/tcp_priv.h" #include "lwip/stats.h" #include "tcp_helper.h" #include "lwip/inet_chksum.h" #ifdef _MSC_VER #pragma warning(disable: 4307) /* we explicitly wrap around TCP seqnos */ #endif #if !LWIP_STATS || !TCP_STATS || !MEMP_STATS #error "This tests needs TCP- a...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/tcp/test_tcp.c
C
unknown
24,264
#ifndef LWIP_HDR_TEST_TCP_H #define LWIP_HDR_TEST_TCP_H #include "../lwip_check.h" Suite *tcp_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/tcp/test_tcp.h
C
unknown
125
#include "test_tcp_oos.h" #include "lwip/priv/tcp_priv.h" #include "lwip/stats.h" #include "tcp_helper.h" #if !LWIP_STATS || !TCP_STATS || !MEMP_STATS #error "This tests needs TCP- and MEMP-statistics enabled" #endif #if !TCP_QUEUE_OOSEQ #error "This tests needs TCP_QUEUE_OOSEQ enabled" #endif /** CHECK...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/tcp/test_tcp_oos.c
C
unknown
36,904
#ifndef LWIP_HDR_TEST_TCP_OOS_H #define LWIP_HDR_TEST_TCP_OOS_H #include "../lwip_check.h" Suite *tcp_oos_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/tcp/test_tcp_oos.h
C
unknown
137
#include "test_udp.h" #include "lwip/udp.h" #include "lwip/stats.h" #if !LWIP_STATS || !UDP_STATS || !MEMP_STATS #error "This tests needs UDP- and MEMP-statistics enabled" #endif /* Helper functions */ static void udp_remove_all(void) { struct udp_pcb *pcb = udp_pcbs; struct udp_pcb *pcb2; whi...
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/udp/test_udp.c
C
unknown
1,282
#ifndef LWIP_HDR_TEST_UDP_H #define LWIP_HDR_TEST_UDP_H #include "../lwip_check.h" Suite* udp_suite(void); #endif
2301_81045437/classic-platform
communication/lwip-2.0.3/test/unit/udp/test_udp.h
C
unknown
125
#LWIP LWIP_VERSION?=2.0.3 ifeq ($(LWIP_VERSION),1.5.0-beta) inc-$(USE_LWIP) += $(ROOTDIR)/communication/lwip-$(LWIP_VERSION)/contrib/port/ArcticCore inc-$(USE_LWIP) += $(ROOTDIR)/communication/lwip-$(LWIP_VERSION)/src/include inc-$(USE_LWIP) += $(ROOTDIR)/communication/lwip-$(LWIP_VERSION)/src/include/ipv4 in...
2301_81045437/classic-platform
communication/lwip.mod.mk
Makefile
unknown
7,881
ifneq ($(filter y,$(USE_RTE) $(USE_QUEUE)),) obj-$(USE_QUEUE) += Queue.o inc-y += $(ROOTDIR)/datastructures/Queue/inc vpath-y += $(ROOTDIR)/datastructures/Queue/src endif
2301_81045437/classic-platform
datastructures/Queue/Queue.mod.mk
Makefile
unknown
178
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
datastructures/Queue/inc/Queue.h
C
unknown
5,895
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
datastructures/Queue/src/Queue.c
C
unknown
7,504
obj-$(USE_SAFEQ) += Safety_Queue.o inc-$(USE_SAFEQ) += $(ROOTDIR)/datastructures/Safety_Queue/inc vpath-$(USE_SAFEQ) += $(ROOTDIR)/datastructures/Safety_Queue/src
2301_81045437/classic-platform
datastructures/Safety_Queue/SafeQ.mod.mk
Makefile
unknown
168
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
datastructures/Safety_Queue/inc/Safety_Queue.h
C
unknown
6,791
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
datastructures/Safety_Queue/src/Safety_Queue.c
C
unknown
13,887
#Dcm obj-$(USE_DCM) += Dcm.o obj-$(USE_DCM) += Dcm_Dsp.o obj-$(USE_DCM) += Dcm_Dsd.o obj-$(USE_DCM) += Dcm_Dsl.o obj-$(USE_DCM) += Dcm_ROE.o obj-$(USE_DCM) += Dcm_Internal.o obj-$(USE_DCM) += Dcm_LCfg.o ifeq ($(filter Dcm_Callout_Stubs.o,$(obj-y)),) obj-$(USE_DCM) += Dcm_Callout_Stubs.o endif inc-$(USE_DCM...
2301_81045437/classic-platform
diagnostic/Dcm/Dcm.mod.mk
Makefile
unknown
454
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/inc/Dcm.h
C
unknown
7,007
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/inc/Dcm_Cbk.h
C
unknown
1,834
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/inc/Dcm_Lcfg.h
C
unknown
32,384
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/inc/Dcm_Types.h
C
unknown
18,750
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/src/Dcm.c
C
unknown
12,066
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/src/Dcm_Callout_Stubs.c
C
unknown
5,467
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/src/Dcm_Dsd.c
C
unknown
34,893
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/src/Dcm_Dsl.c
C
unknown
93,208
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/src/Dcm_Dsp.c
C
unknown
291,506
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms containe...
2301_81045437/classic-platform
diagnostic/Dcm/src/Dcm_Internal.c
C
unknown
29,272
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dcm/src/Dcm_Internal.h
C
unknown
16,404
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms containe...
2301_81045437/classic-platform
diagnostic/Dcm/src/Dcm_ROE.c
C
unknown
28,084
#Dem obj-$(USE_DEM) += Dem.o ifeq ($(filter Dem_Extension.o,$(obj-y)),) obj-$(USE_DEM_EXTENSION) += Dem_Extension.o endif obj-$(USE_DEM) += Dem_Debounce.o obj-$(USE_DEM) += Dem_LCfg.o obj-$(USE_DEM) += Dem_NvM.o inc-$(USE_DEM) += $(ROOTDIR)/diagnostic/Dem/inc inc-$(USE_DEM) += $(ROOTDIR)/diagnostic/Dem/src ...
2301_81045437/classic-platform
diagnostic/Dem/Dem.mod.mk
Makefile
unknown
369
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dem/inc/Dem.h
C
unknown
13,317
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dem/inc/Dem_Lcfg.h
C
unknown
16,615
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dem/inc/Dem_Types.h
C
unknown
17,770
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dem/src/Dem.c
C
unknown
447,421
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
diagnostic/Dem/src/Dem_Debounce.c
C
unknown
20,034
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dem/src/Dem_Extension.c
C
unknown
3,933
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dem/src/Dem_Extension.h
C
unknown
3,613
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Dem/src/Dem_Internal.h
C
unknown
7,613
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
diagnostic/Dem/src/Dem_NvM.c
C
unknown
9,884
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
diagnostic/Dem/src/Dem_NvM.h
C
unknown
1,520
#DET obj-$(USE_DET) += Det.o obj-$(USE_DET) += Det_Cfg.o inc-$(USE_DET) += $(ROOTDIR)/diagnostic/Det/inc inc-$(USE_DET) += $(ROOTDIR)/diagnostic/Det/src vpath-$(USE_DET) += $(ROOTDIR)/diagnostic/Det/src
2301_81045437/classic-platform
diagnostic/Det/Det.mod.mk
Makefile
unknown
207
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Det/inc/Det.h
C
unknown
6,690
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Det/src/Det.c
C
unknown
10,763
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
diagnostic/Det/src/Det_BswMemMap.h
C
unknown
1,809
# Dlt obj-$(USE_DLT) += Dlt.o obj-$(USE_DLT) += Dlt_cfg.o ifeq ($(filter Dlt_Callout_Stubs.o,$(obj-y)),) obj-$(USE_DLT) += Dlt_Callout_Stubs.o endif vpath-$(USE_DLT) += $(ROOTDIR)/diagnostic/Dlt/src inc-$(USE_DLT) += $(ROOTDIR)/diagnostic/Dlt/inc
2301_81045437/classic-platform
diagnostic/Dlt/Dlt.mod.mk
Makefile
unknown
255
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
diagnostic/Dlt/inc/Dlt.h
C
unknown
6,216
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in t...
2301_81045437/classic-platform
diagnostic/Dlt/src/Dlt.c
C
unknown
39,182
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
diagnostic/Dlt/src/Dlt_Callout_Stubs.c
C
unknown
5,503
# FiM FIM_PB ?= y obj-$(USE_FIM) += FiM.o ifeq (${FIM_PB},y) pb-obj-$(USE_FIM) += FiM_PBCfg.o pb-pc-file-$(USE_FIM) += FiM_Cfg.h else obj-$(USE_FIM) += FiM_PBCfg.o endif vpath-$(USE_FIM) += $(ROOTDIR)/diagnostic/FiM/src inc-$(USE_FIM) += $(ROOTDIR)/diagnostic/FiM/inc
2301_81045437/classic-platform
diagnostic/FiM/FiM.mod.mk
Makefile
unknown
281
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
diagnostic/FiM/inc/FiM.h
C
unknown
2,951
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
diagnostic/FiM/inc/FiM_Types.h
C
unknown
1,908
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
diagnostic/FiM/src/FiM.c
C
unknown
16,226
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
drivers/CanTrcv/CanTrcv.c
C
unknown
38,333
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
drivers/CanTrcv/CanTrcv.h
C
unknown
7,360
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
drivers/CanTrcv/CanTrcv_ConfigTypes.h
C
unknown
3,689
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
drivers/CanTrcv/CanTrcv_Internal.h
C
unknown
3,895
#CanTrcv vpath-$(USE_CANTRCV) += $(ROOTDIR)/drivers/CanTrcv inc-$(USE_CANTRCV) += $(ROOTDIR)/drivers/Can inc-$(USE_CANTRCV) += $(ROOTDIR)/drivers/CanTrcv obj-$(USE_CANTRCV) += CanTrcv.o obj-$(USE_CANTRCV) += CanTrcv_Cfg.o pb-obj-$(USE_CANTRCV) += CanTrcv_PBcfg.o pb-pc-file-$(USE_CANTRCV) += CanTrcv_Cfg.h CanTrcv...
2301_81045437/classic-platform
drivers/CanTrcv/cantrcv.mod.mk
Makefile
unknown
534
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
drivers/Eep/Eep.c
C
unknown
25,598
#Eep obj-$(USE_EEP) += Eep.o obj-$(USE_EEP) += Eep_Lcfg.o inc-$(USE_EEP)-$(if $(CFG_JACINTO)$(CFG_RH850)$(CFG_MPC55XX)$(CFG_MPC56XX)$(CFG_TMS570),y) += $(ROOTDIR)/drivers/Eep vpath-$(USE_EEP)-$(if $(CFG_JACINTO)$(CFG_RH850)$(CFG_MPC55XX)$(CFG_MPC56XX)$(CFG_TMS570),y) += $(ROOTDIR)/drivers/Eep
2301_81045437/classic-platform
drivers/Eep/Eep.mod.mk
Makefile
unknown
301
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
drivers/Fls/Fls.h
C
unknown
5,546
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/Fls/Fls_ConfigTypes.h
C
unknown
2,028
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/Fls/Fls_SST25xx.c
C
unknown
28,809
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/Fls/Fls_SST25xx.h
C
unknown
3,793
#Flash obj-$(USE_FLS)-$(CFG_PPC) += Fls_mpc5xxx.o obj-$(USE_FLS)-$(CFG_TMS570) += Fls_tms570.o obj-$(USE_FLS)-$(CFG_STM32) += Fls_stm32.o obj-$(USE_FLS)-$(CFG_JACINTO) += Fls_jacinto.o obj-$(USE_FLS)-$(CFG_ZYNQ) += Fls_zynq.o obj-$(USE_FLS)-$(CFG_GNULINUX) += Fls_gnulinux.o obj-$(USE_FLS) += Fls_Cfg.o ifeq ...
2301_81045437/classic-platform
drivers/Fls/fls.mod.mk
Makefile
unknown
1,701
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/Fr/Fr.c
C
unknown
28,702
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/Fr/Fr.h
C
unknown
6,642
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/Fr/Fr_Internal.h
C
unknown
6,488
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
drivers/Fr/Fr_mpc5xxx.c
C
unknown
62,948
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/Fr/Fr_mpc5xxx.h
C
unknown
1,379
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/Fr/Fr_rh850f1x.h
C
unknown
5,140
#Flexray driver obj-$(USE_FR) += Fr.o obj-$(USE_FR) += Fr_PBcfg.o obj-$(USE_FR)-$(RH850F1H) += Fr_Internal.o obj-$(USE_FR)-$(CFG_PPC) += Fr_mpc5xxx.o inc-$(USE_FR) += $(ROOTDIR)/drivers/Fr vpath-$(USE_FR) += $(ROOTDIR)/drivers/Fr
2301_81045437/classic-platform
drivers/Fr/fr.mod.mk
Makefile
unknown
237
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in th...
2301_81045437/classic-platform
drivers/Wdg/Wdg.c
C
unknown
4,846
#DMA obj-$(USE_DMA) += Dma.o obj-$(USE_DMA) += Dma_Cfg.o inc-$(USE_DMA) += $(ROOTDIR)/$(ARCH_DRIVER_PATH-y)/drivers
2301_81045437/classic-platform
drivers/dma.mod.mk
Makefile
unknown
120
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/fs_ram.c
C
unknown
3,620
#ICU obj-$(USE_ICU) += Icu_Lcfg.o obj-$(USE_ICU) += Icu_PBcfg.o obj-$(USE_ICU)-$(CFG_MPC5645S) += Icu_mpc5xxx.o obj-$(USE_ICU)-$(CFG_MPC5746C) += Icu_mpc5xxx.o obj-$(USE_ICU)-$(CFG_MPC5646B) += Icu_mpc5xxx.o obj-$(USE_ICU)-$(CFG_MPC560X) += Icu_mpc5xxx.o obj-$(USE_ICU)-$(CFG_ZYNQ) += Icu_zynq.o obj-$(USE_IC...
2301_81045437/classic-platform
drivers/icu.mod.mk
Makefile
unknown
444
#irq
2301_81045437/classic-platform
drivers/irq.mod.mk
Makefile
unknown
4
#kernel # CPU specific ifeq ($(CFG_PPC),y) obj-$(USE_KERNEL) += mpc5xxx_handlers.o obj-$(USE_KERNEL) += mpc5xxx_handlers_asm.o ifeq ($(filter os_mpu_mpc5516.o os_mpu_mpc5643l.o os_mpu_spc56xl70.o os_mpu_mpc5744p.o os_mpu_mpc560x.o,$(obj-y)),) obj-$(USE_KERNEL)-$(CFG_MPC5516) += os_mpu_mpc5516.o obj-$(USE_KERNEL)...
2301_81045437/classic-platform
drivers/kernel.mod.mk
Makefile
unknown
1,436
# Lin obj-$(USE_LIN) += Lin_PBcfg.o obj-$(USE_LIN) += Lin_Lcfg.o obj-$(USE_LIN)-$(CFG_MPC560X) += LinFlex_mpc5xxx.o obj-$(USE_LIN)-$(CFG_MPC5744P) += LinFlex_mpc5xxx.o obj-$(USE_LIN)-$(CFG_MPC5746C) += LinFlex_mpc5xxx.o obj-$(USE_LIN)-$(CFG_MPC5748G) += LinFlex_mpc5xxx.o obj-$(USE_LIN)-$(CFG_MPC5777M) += LinFlex...
2301_81045437/classic-platform
drivers/lin.mod.mk
Makefile
unknown
1,631
# Ocu obj-$(USE_OCU) += Ocu_mpc5xxx.o obj-$(USE_OCU) += Ocu_PBcfg.o obj-$(USE_OCU) += Ocu_Irq.o vpath-$(USE_OCU)+= $(ROOTDIR)/mcal/Ocu/src inc-$(USE_OCU) += $(ROOTDIR)/mcal/Ocu/inc
2301_81045437/classic-platform
drivers/ocu.mod.mk
Makefile
unknown
191
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/serial_dbg_code_composer.c
C
unknown
7,363
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/serial_dbg_code_composer.h
C
unknown
909
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/serial_dbg_t32.c
C
unknown
3,308
/*-------------------------------- Arctic Core ------------------------------ * Copyright (C) 2013, ArcCore AB, Sweden, www.arccore.com. * Contact: <contact@arccore.com> * * You may ONLY use this file: * 1)if you have a valid commercial ArcCore license and then in accordance with * the terms contained in...
2301_81045437/classic-platform
drivers/serial_dbg_t32.h
C
unknown
888