Home
last modified time | relevance | path

Searched refs:obj (Results 1 – 25 of 37) sorted by relevance

12

/buildroot/package/liboping/
A D0002-Open-raw-sockets-when-adding-hosts-not-when-doing-th.patch49 - obj->fd4 = ping_open_socket(obj, AF_INET);
52 - ping_set_ttl (obj, obj->ttl);
53 - ping_set_qos (obj, obj->qos);
57 - obj->fd6 = ping_open_socket(obj, AF_INET6);
60 - ping_set_ttl (obj, obj->ttl);
61 - ping_set_qos (obj, obj->qos);
71 + obj->fd4 = ping_open_socket(obj, AF_INET);
74 + ping_set_ttl (obj, obj->ttl);
75 + ping_set_qos (obj, obj->qos);
82 + ping_set_ttl (obj, obj->ttl);
[all …]
A D0003-Fix-compile-break-with-GCC-7-buffer-overflow-with-snprintf.patch18 static void ping_set_error (pingobj_t *obj, const char *function,
23 snprintf (obj->errmsg, sizeof (obj->errmsg),
26 obj->errmsg[sizeof (obj->errmsg) - 1] = 0;
A D0004-Fix-compile-error-on-GCC-7.patch18 static void ping_set_error (pingobj_t *obj, const char *function,
25 snprintf (obj->errmsg, sizeof (obj->errmsg),
30 obj->errmsg[sizeof (obj->errmsg) - 1] = 0;
/buildroot/package/valgrind/
A Duclibc.supp5 obj:/lib/ld-uClibc*
11 obj:/lib/ld-uClibc*
17 obj:/lib/ld-uClibc*
23 obj:/lib/ld-uClibc*
29 obj:/lib/ld-uClibc*
35 obj:/lib/ld-uClibc*
41 obj:/lib/ld-uClibc*
47 obj:/lib/ld-uClibc*
53 obj:/lib/ld-uClibc*
59 obj:/lib/ld-uClibc*
[all …]
/buildroot/support/kconfig/patches/
A D06-br-build-system-integration.patch44 $(obj)/qconf.o: $(obj)/.tmp_qtcheck
48 $(obj)/.tmp_qtcheck: $(src)/Makefile
49 -include $(obj)/.tmp_qtcheck
51 @@ -270,9 +298,8 @@ $(obj)/.tmp_qtcheck:
56 $(obj)/gconf.o: $(obj)/.tmp_gtkcheck
59 -include $(obj)/.tmp_gtkcheck
62 @@ -300,11 +327,8 @@ $(obj)/zconf.tab.o: $(obj)/zconf.lex.c
64 $(obj)/qconf.o: $(obj)/qconf.moc
69 $(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck
74 $(obj)/gconf.glade.h: $(obj)/gconf.glade
A D10-br-build-system.patch15 +obj ?= .
19 +-include $(obj)/.depend
20 +$(obj)/.depend: $(wildcard *.h *.c)
32 +HOST_EXTRACFLAGS += -I$(obj) -DCONFIG_=\"\"
38 …AGS) $(HOSTCFLAGS) $(HOSTCFLAGS_$@) $(addprefix $(obj)/,$($(@F)-objs)) $(HOSTLOADLIBES_$(@F)) -o $…
41 …TCFLAGS) $(HOSTCXXFLAGS_$@) $(addprefix $(obj)/,$($(@F)-objs) $($(@F)-cxxobjs)) $(HOSTLOADLIBES_$(…
43 +$(obj)/%.o: %.c
46 +$(obj)/%.o: $(obj)/%.c
49 +$(obj)/%.o: %.cc
52 +$(obj)/%:: $(src)/%_shipped
[all …]
/buildroot/support/kconfig/
A DMakefile28 xconfig: $(obj)/qconf
31 gconfig: $(obj)/gconf
37 config: $(obj)/conf
40 nconfig: $(obj)/nconf
66 update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
278 $(obj)/qconf.o: $(obj)/.tmp_qtcheck
308 $(obj)/gconf.o: $(obj)/.tmp_gtkcheck
332 $(obj)/zconf.tab.o: $(obj)/zconf.lex.c
334 $(obj)/qconf.o: $(obj)/qconf.moc
336 $(obj)/%.moc: $(src)/%.h $(obj)/.tmp_qtcheck
[all …]
A DMakefile.br5 obj ?= .
9 -include $(obj)/.depend
10 $(obj)/.depend: $(wildcard *.h *.c)
19 host-cobjs := $(addprefix $(obj)/,$(sort $(foreach m,$(__hostprogs),$($(m)-objs))))
20 host-cxxobjs := $(addprefix $(obj)/,$(sort $(foreach m,$(__hostprogs),$($(m)-cxxobjs))))
22 HOST_EXTRACFLAGS += -I$(obj) -DCONFIG_=\"\"
A Dstreamline_config.pl329 foreach my $obj (split /\s+/,$objs) {
330 $obj =~ s/-/_/g;
331 if ($obj =~ /(.*)\.o$/) {
/buildroot/utils/checkpackagelib/
A Dtest_util.py2 obj = check_function(filename, 'url')
4 result.append(obj.before())
6 result.append(obj.check_line(i + 1, line))
7 result.append(obj.after())
A Dtest_tool.py17 obj = tool(script)
18 result = obj.run()
/buildroot/support/testing/tests/package/
A Dsample_python_rtoml.py4 obj = { variable
34 assert loaded_obj == obj
36 assert rtoml.dumps(obj) == """\
A Dsample_python_dbus_next.py34 obj = bus2.get_proxy_object(bus_name, '/test/path', introspection)
35 interface = obj.get_interface(service_interface.name)
A Dsample_python_dbus_fast.py35 obj = bus2.get_proxy_object(bus_name, obj_path, introspection)
36 interface = obj.get_interface(service_interface.name)
/buildroot/package/umtprd/
A D0001-Fix-output_dir-make-dependency.patch10 cc -o obj/mtp_op_truncateobject.o src/mtp_operations/mtp_op_truncateobject.c -c -I./inc -lpthread …
12 Fatal error: can't create obj/mtp_op_truncateobject.o: No such file or directory
13 make: *** [Makefile:19: obj/mtp_op_truncateobject.o] Error 1 shuffle=reverse
25 @@ -7,15 +7,15 @@ objects := $(sources:src/%.c=obj/%.o)
27 ops_objects := $(ops_sources:src/mtp_operations/%.c=obj/%.o)
35 -$(objects): obj/%.o: src/%.c
36 +$(objects): obj/%.o: src/%.c | output_dir
39 -$(ops_objects): obj/%.o: src/mtp_operations/%.c
40 +$(ops_objects): obj/%.o: src/mtp_operations/%.c | output_dir
/buildroot/package/ca-certificates/
A D0001-mozilla-certdata2pem.py-make-cryptography-module-opt.patch36 @@ -122,11 +120,16 @@ for obj in objects:
37 if not obj['CKA_LABEL'] in trust or not trust[obj['CKA_LABEL']]:
40 - cert = x509.load_der_x509_certificate(bytes(obj['CKA_VALUE']))
43 - print('Trusted but expired certificate found: %s' % obj['CKA_LABEL'])
48 + cert = x509.load_der_x509_certificate(bytes(obj['CKA_VALUE']))
51 + print('Trusted but expired certificate found: %s' % obj['CKA_LABEL'])
56 bname = obj['CKA_LABEL'][1:-1].replace('/', '_')\
/buildroot/package/nodejs/nodejs-src/
A D0003-include-obj-name-in-shared-intermediate.patch4 Subject: [PATCH] include obj name in shared intermediate
31 + obj = "obj"
33 + obj += "." + self.toolset
35 + path = path.replace("$|OBJ", obj)
/buildroot/package/nvidia-driver/
A D0001-use-LDFLAGS.patch31 $(obj)/$(NVIDIA_INTERFACE): $(addprefix $(obj)/,$(NVIDIA_OBJECTS))
43 $(obj)/$(NVIDIA_MODESET_INTERFACE): $(addprefix $(obj)/,$(NVIDIA_MODESET_OBJECTS))
/buildroot/package/heimdal/
A D0001-Use-perl-module-JSON-PP-part-of-core-instead-of-JSON.patch38 - my $obj = JSON->new->utf8->decode(<EXP>);
39 + my $obj = JSON::PP->new->utf8->decode(<EXP>);
42 foreach my $x (keys %$obj) {
/buildroot/boot/afboot-stm32/
A D0002-Makefile-drop-nostartfiles.patch36 obj-y += gpio.o mpu.o qspi.o start_kernel.o
37 obj-f4 += $(obj-y) usart-f4.o
A D0001-Pass-fno-builtin-to-fix-build-with-gcc-10.patch43 obj-y += gpio.o mpu.o qspi.o start_kernel.o
A D0003-Makefile-disable-stack-protector.patch33 obj-y += gpio.o mpu.o qspi.o start_kernel.o
/buildroot/package/json-c/
A D0001-json_pointer.c-initialize-idx.patch26 @@ -158,7 +158,7 @@ static int json_pointer_result_get_recursive(struct json_object *obj, char *path
29 struct json_object *parent_obj = obj;
/buildroot/package/vboot-utils/
A D0007-Make-vboot_version-extern-in-header.patch12 >>> host_x63-asan_no_detect_leaks/obj/third_party/vboot_reference/futility/futility.cmd_…
14 >>> host_x64-asan_no_detect_leaks/obj/third_party/vboot_reference/futility/futility.cmd_…
/buildroot/package/zfs/
A Dzfs.mk23 --with-linux-obj=$(LINUX_DIR) \

Completed in 60 milliseconds

12