Searched refs:setup (Results 1 - 25 of 136) sorted by relevance

123456

/external/webkit/WebKitTools/CygwinDownloader/
H A Dsetup.py1 from distutils.core import setup namespace
4 setup(console=['cygwin-downloader.py'])
H A Dmake-zip.sh11 "${PYTHONEXE}" setup.py py2exe || {
12 echo "Failed executing setup.py" 1>&2
/external/e2fsprogs/contrib/python-uuid/
H A Dsetup.py2 from distutils.core import setup, Extension namespace
8 setup (name = 'e2fsprogs_uuid',
/external/chromium/third_party/libevent/test/
H A Dtest.sh3 setup () { function
54 setup
60 setup
66 setup
72 setup
78 setup
84 setup
/external/webkit/WebKitTools/pywebsocket/
H A Dsetup.py37 from distutils.core import setup namespace
47 setup(author='Yuzo Fujishima',
/external/expat/amiga/
H A Dlaunch.c31 void setup() __attribute__((constructor));
35 void setup() function
/external/bluetooth/bluez/audio/
H A Da2dp.c111 static struct a2dp_setup *setup_ref(struct a2dp_setup *setup) argument
113 setup->ref++;
115 DBG("%p: ref=%d", setup, setup->ref);
117 return setup;
131 static void setup_unref(struct a2dp_setup *setup) argument
133 setup->ref--;
135 DBG("%p: ref=%d", setup, setup->ref);
137 if (setup
235 struct a2dp_setup *setup = l->data; local
249 struct a2dp_setup *setup = l->data; local
517 struct a2dp_setup *setup; local
600 struct a2dp_setup *setup; local
640 struct a2dp_setup *setup; local
666 struct a2dp_setup *setup; local
711 struct a2dp_setup *setup; local
767 struct a2dp_setup *setup = data; local
820 struct a2dp_setup *setup; local
863 struct a2dp_setup *setup; local
913 struct a2dp_setup *setup; local
1334 struct a2dp_setup *setup; local
1457 struct a2dp_setup *setup; local
1516 struct a2dp_setup *setup; local
1566 struct a2dp_setup *setup; local
[all...]
/external/clearsilver/python/
H A DMakefile26 $(NEO_UTIL_SO): setup.py $(NEO_UTIL_SRC) $(DEP_LIBS)
28 CC="$(CC)" LDSHARED="$(LDSHARED)" $(PYTHON) setup.py build_ext --inplace
33 setup:
34 $(PYTHON) setup.py build_ext --inplace
H A Dsetup.py8 from setuptools import setup namespace
10 from distutils.core import setup namespace
24 ## command-line or in the setup.cfg file for options which take multiple
101 # HACK! The setup/Makefile may not have the hermetic/cross-compiler entries
105 sys.stderr.write("Overriding setup's CC from %s to %s\n" % (given_cc, CC))
131 apply(setup, [], setup_args)
/external/e2fsprogs/tests/defaults/
H A De_script6 if [ -f $test_dir/setup ]; then
7 . $test_dir/setup
31 cat $SRCDIR/progs/test_data/$instance.setup $SRCDIR/progs/test_data/test.$class \
/external/dropbear/libtomcrypt/src/modes/ecb/
H A Decb_start.c41 return cipher_descriptor[cipher].setup(key, keylen, num_rounds, &ecb->key);
/external/dropbear/libtomcrypt/src/modes/cbc/
H A Dcbc_start.c44 /* setup cipher */
45 if ((err = cipher_descriptor[cipher].setup(key, keylen, num_rounds, &cbc->key)) != CRYPT_OK) {
/external/dropbear/libtomcrypt/src/modes/ofb/
H A Dofb_start.c53 return cipher_descriptor[cipher].setup(key, keylen, num_rounds, &ofb->key);
/external/webkit/WebCore/svg/graphics/
H A DSVGPaintServerSolid.h48 virtual bool setup(GraphicsContext*&, const RenderObject*, const RenderStyle*, SVGPaintTargetType, bool isPaintingText) const;
H A DSVGPaintServer.h74 virtual bool setup(GraphicsContext*&, const RenderObject*, const RenderStyle*, SVGPaintTargetType, bool isPaintingText = false) const = 0;
76 bool setup(GraphicsContext*&, const RenderObject*, SVGPaintTargetType, bool isPaintingText = false) const;
/external/dropbear/libtomcrypt/src/mac/xcbc/
H A Dxcbc_init.c52 if ((err = cipher_descriptor[cipher].setup(key, keylen, 0, skey)) != CRYPT_OK) {
64 /* setup K1 */
65 err = cipher_descriptor[cipher].setup(xcbc->K[0], cipher_descriptor[cipher].block_length, 0, &xcbc->key);
67 /* setup struct */
/external/kernel-headers/original/linux/
H A Dtransport_class.h19 int (*setup)(struct transport_container *, struct device *, member in struct:transport_class
32 .setup = su, \
/external/skia/src/core/
H A DSkBlitter_Sprite.cpp31 void SkSpriteBlitter::setup(const SkBitmap& device, int left, int top, function in class:SkSpriteBlitter
98 blitter->setup(device, left, top, paint);
H A DSkSpriteBlitter.h31 virtual void setup(const SkBitmap& device, int left, int top,
/external/expat/tests/
H A Dminicheck.c48 tcase_setup_function setup,
52 tc->setup = setup;
123 if (tc->setup != NULL) {
124 /* setup */
129 tc->setup();
47 tcase_add_checked_fixture(TCase *tc, tcase_setup_function setup, tcase_teardown_function teardown) argument
/external/dropbear/libtomcrypt/src/mac/f9/
H A Df9_init.c45 if ((err = cipher_descriptor[cipher].setup(key, keylen, 0, &f9->key)) != CRYPT_OK) {
54 /* setup struct */
/external/dropbear/libtomcrypt/src/modes/cfb/
H A Dcfb_start.c52 if ((err = cipher_descriptor[cipher].setup(key, keylen, num_rounds, &cfb->key)) != CRYPT_OK) {
/external/skia/include/effects/
H A DSkColorMatrixFilter.h62 void setup(const SkScalar array[20]);
/external/webkit/WebCore/platform/graphics/android/
H A Dandroid_graphics.h68 bool setup();
/external/dropbear/libtomcrypt/src/modes/f8/
H A Df8_start.c75 if ((err = cipher_descriptor[cipher].setup(tkey, keylen, num_rounds, &f8->key)) != CRYPT_OK) {
91 return cipher_descriptor[cipher].setup(key, keylen, num_rounds, &f8->key);

Completed in 186 milliseconds

123456