HomeSort by relevance Sort by last modified time
    Searched refs:curl (Results 1 - 22 of 22) sorted by null

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
bugzillaLogin.sh 13 #older versions of curl (like the one on emf) don't have -k
14 OUT=$(curl -k 2>&1| grep unknown)
22 curl -s -S $CURLARG 'https://bugs.eclipse.org/bugs/index.cgi' -d "GoAheadAndLogIn=1&Bugzilla_login=$LOGIN&Bugzilla_password=$PW" -D $HEADERS >/dev/null
  /external/libvpx/libvpx/test/android/
get_files.py 48 curl = pycurl.Curl()
49 curl.setopt(pycurl.URL, url + "/" + filename)
50 curl.setopt(pycurl.WRITEDATA, fp)
51 curl.perform()
52 curl.close()
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 71 $curl = curl_init($url[0]); variable
72 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
73 curl_setopt($curl, CURLOPT_FAILONERROR, false);
74 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
77 curl_setopt($curl, CURLINFO_HEADER_OUT, $returnRequestHeaders);
81 curl_setopt($curl, CURLOPT_HEADER, true);
88 curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
91 $response = curl_exec($curl);
93 $response = curl_error($curl);
97 $response = curl_getinfo($curl, CURLINFO_HEADER_OUT) . $response
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 70 $curl = curl_init($url[0]); variable
71 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
72 curl_setopt($curl, CURLOPT_FAILONERROR, false);
73 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
76 curl_setopt($curl, CURLINFO_HEADER_OUT, $returnRequestHeaders);
80 curl_setopt($curl, CURLOPT_HEADER, true);
87 curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
90 $response = curl_exec($curl);
92 $response = curl_error($curl);
96 $response = curl_getinfo($curl, CURLINFO_HEADER_OUT) . $response
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 42 * The library depends on curl, and requires PHP 5.
73 throw new ErrorException('Curl extension is required.');
118 $curl = curl_init($url . ($method == 'GET' && $params ? '?' . $params : '')); variable
119 curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
120 curl_setopt($curl, CURLOPT_HEADER, false);
121 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
122 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
124 curl_setopt($curl, CURLOPT_POST, true);
125 curl_setopt($curl, CURLOPT_POSTFIELDS, $params);
127 curl_setopt($curl, CURLOPT_HEADER, true)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 42 * The library depends on curl, and requires PHP 5.
73 throw new ErrorException('Curl extension is required.');
118 $curl = curl_init($url . ($method == 'GET' && $params ? '?' . $params : '')); variable
119 curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
120 curl_setopt($curl, CURLOPT_HEADER, false);
121 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
122 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
124 curl_setopt($curl, CURLOPT_POST, true);
125 curl_setopt($curl, CURLOPT_POSTFIELDS, $params);
127 curl_setopt($curl, CURLOPT_HEADER, true)
    [all...]
  /external/protobuf/
autogen.sh 22 curl http://googletest.googlecode.com/files/gtest-1.3.0.tar.bz2 | tar jx
  /external/chromium_org/third_party/JSON/
get_and_build_json_pm.sh 14 curl --remote-name "$SRC_URL"
  /external/chromium_org/chrome/tools/
webforms_aggregator.py 73 Each Retriever object creates a curl object. This object is added to the curl
106 The function closes the corresponding curl object that does the downloading.
226 """Initializes curl object for a HEAD request.
232 self._curl_object = pycurl.Curl()
249 """Initializes curl object for a GET request.
266 It uses a curl object for a single download. This function is called only
380 curl_multi_object: a curl object that downloads multiple pages
424 curl_multi_object: Each Retriever object has a curl object which is
  /external/chromium_org/tools/clang/scripts/
update.sh 200 if which curl > /dev/null; then
201 curl -L --fail "${CDS_FULL_URL}" -o "${CDS_OUTPUT}" || \
206 echo "Neither curl nor wget found. Please install one of these."
  /external/chromium_org/tools/valgrind/
waterfall.sh 23 if [ "$(which curl)" != "" ]
25 if ! curl -s -o "$2" "$1"
40 echo "Need either curl or wget to download stuff... aborting"
  /external/skia/tools/tests/
run.sh 96 curl $URL --output $DESTFILE
  /external/chromium_org/third_party/openssl/
import_from_android.sh 318 run curl $CURL_FLAGS -o $DOWNLOAD_DIR/$OPENSSL_PACKAGE $OPENSSL_TAR_SOURCE/$OPENSSL_PACKAGE
319 run curl $CURL_FLAGS -o $DOWNLOAD_DIR/$OPENSSL_PACKAGE.md5 $OPENSSL_TAR_SOURCE/$OPENSSL_PACKAGE.md5
  /ndk/build/tools/
build-host-python.sh 162 (cd $ARCHIVE_DIR && run curl -L -o "$PKG_NAME" "$PKG_URL")
ndk-common.sh 635 find_program CMD_CURL curl
647 # Download a file with either 'curl', 'wget' or 'scp'
660 echo "Please install wget or curl on this machine"
build-mingw64-toolchain.sh 343 (cd $ARCHIVE_DIR && run curl -L -o "$PKG_NAME" "$PKG_URL")
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
bisect-builds 235 `curl -# -o '$path' '$urlBase/$filename'`;
319 open(NIGHTLIES, "curl -s $nightlyBuildsURLBase/all |") || die;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 492 find_program CMD_CURL curl
495 # Download a file with either 'curl', 'wget' or 'scp'
508 echo "Please install wget or curl on this machine"
    [all...]
  /external/libvpx/libvpx/
libs.mk 400 curl -L -o $@ $(call libvpx_test_data_url,$(@F))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/
build-hardy-toolchain.sh 570 find_program CMD_CURL curl
573 # Download a file with either 'curl', 'wget' or 'scp'
586 echo "Please install wget or curl on this machine"
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/
build-hardy-toolchain.sh 570 find_program CMD_CURL curl
573 # Download a file with either 'curl', 'wget' or 'scp'
586 echo "Please install wget or curl on this machine"
    [all...]
  /external/qemu-pc-bios/bochs/
configure     [all...]

Completed in 503 milliseconds