HomeSort by relevance Sort by last modified time
    Searched full:update (Results 601 - 625 of 9150) sorted by null

<<21222324252627282930>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
OpenSSLPBEParametersGenerator.java 58 digest.update(password, 0, password.length);
59 digest.update(salt, 0, salt.length);
76 digest.update(buf, 0, buf.length);
PKCS5S1ParametersGenerator.java 41 digest.update(password, 0, password.length);
42 digest.update(salt, 0, salt.length);
47 digest.update(digestBytes, 0, digestBytes.length);
PKCS5S2ParametersGenerator.java 57 hMac.update(S, 0, S.length);
60 hMac.update(iBuf, 0, iBuf.length);
74 hMac.update(state, 0, state.length);
  /external/chromium/chrome/browser/chromeos/login/
network_selection_view.h 47 // Update strings from the resources. Executed on language change.
97 // fail to update preferred size after string update.
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
array_data_model.js 69 * @param {number} index The index of the item to update.
106 * Use this to update a given item in the array. This does not remove and
111 * @param {number} index The index of the item to update.
  /external/chromium/chrome/browser/web_resource/
gpu_blacklist_updater.cc 28 // Delay between calls to update the gpu blacklist (48 hours).
62 DictionaryPrefUpdate update(prefs_, prefs::kGpuBlacklist);
63 DictionaryValue* gpu_blacklist_cache = update.Get();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
Control.java 43 * <code>Control</code>s are used to specify certain update and render logic
65 * @param enabled Enable or disable the control. If disabled, update()
80 public void update(float tpf); method in interface:Control
  /external/jmonkeyengine/engine/src/test/jme3test/app/
TestAppStateLifeCycle.java 96 public void update(float tpf) { method in class:TestAppStateLifeCycle.TestState
97 super.update(tpf);
98 System.out.println("update");
  /external/libcap-ng/libcap-ng-0.7/
ChangeLog 17 - Python bindings update (arfrever.fta)
22 - Update packet socket code to print interface
54 - In update function, reverse the order of bounding set vs capabilities
  /external/libffi/
ChangeLog.libffi 6 * README: Update for new release.
24 * README: Update for new release.
105 * README: Update for new release.
116 * README: Update for new release. Clean up test docs.
138 * README: Update for new release.
151 * README: Update for new release.
173 Update dates and remove all references to ffi_prep_closure.
205 src/arm/ffitarget.h src/prep_cif.c: Update license text.
209 * README: Update tested platforms.
220 * LICENSE: Update WARRANTY
    [all...]
  /external/libnfc-nci/src/nfa/sys/
nfa_sys_ptim.c 54 ** Description Update the protocol timer list and handle expired timers.
69 we must convert determine the number of ticks since the last update, then
84 /* update timer list */
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 21 // You also need a "zone" statement in /etc/named.conf to tell BIND the update
27 // { type master; file "db.xxx"; allow-update { 127.0.0.1; }; };
39 // update-policy { grant * wildcard *.my-dynamic-subdomain.company.com.; };
  /external/openssh/
TODO 3 - Update the docs
4 - Update README
5 - Update INSTALL
  /external/oprofile/gui/
oprof_start.h 90 /// update config on user change
92 /// update config and validate
141 /// what is the last selected item. events_selected() update it
  /external/qemu/android/
multitouch-screen.c 185 /* Update MTS descriptor, removing the tracked pointer. */
245 /* Callback that is invoked when framebuffer update has been transmitted to the
277 /* First update after previous one has been transmitted to the device. */
287 /* "right" and "bottom" coordinates of the current update. */
291 /* "right" and "bottom" coordinates of the new update. */
335 T("Multi-touch: Software renderer framebuffer update: %d:%d -> %dx%d",
340 * properties over in every FB update. */
364 T("Multi-touch: openGLES framebuffer update: 0:0 -> %dx%d", w, h);
374 /* GLES emulator alwas update the entire framebuffer. */
400 /* This concludes framebuffer update. *
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ObjectManager.java 21 * an object manager invokes update on its children. ObjectManagers themselves are derived from
81 public void update(float timeDelta, BaseObject parent) { method in class:ObjectManager
88 object.update(timeDelta, this);
  /external/webkit/LayoutTests/http/tests/appcache/
remove-cache.html 1 <html manifest="resources/fail-on-update.php">
27 req.open("GET", "resources/fail-on-update.php?command=" + (state ? "delete" : "reset"), false);
48 // The frame will be associated to a cache, but update will obsolete it.
  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseTableView.js 44 this.update();
52 update: function()
86 this.update();
  /external/webkit/Tools/QueueStatusServer/
main.py 69 ('/update-status', UpdateStatus),
70 ('/update-work-items', UpdateWorkItems),
71 ('/update-svn-revision', UpdateSVNRevision),
  /external/webkit/Tools/wx/build/
waf_extensions.py 93 m.update(str(st.st_mtime))
94 m.update(str(st.st_size))
95 m.update(filename)
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.h 68 /* Update receiving estimates. Used when we only receive BWE index, no iSAC data packet. */
99 * update amount of data in bottle neck buffer and burst handling
109 * update long-term average bitrate and amount of data in buffer
  /frameworks/base/core/java/android/webkit/
ZoomControlEmbedded.java 66 public void update() { method in class:ZoomControlEmbedded
106 update(); method
116 update(); method
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 113 * Execute update using the current internal state as {@code WHERE} clause.
115 public int update(SQLiteDatabase db, String table, ContentValues values) { method in class:SelectionBuilder
116 return db.update(table, values, getSelection(), getSelectionArgs());
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 130 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { method in class:LocalProvider
139 count = db.update("data", values, "_id=" + rowId, null);
144 "Cannot update URL: " + url);
  /frameworks/base/docs/html/training/animation/
layout.jd 12 <li><a href="#add">Add, Update, or Remove Items from the Layout</a></li>
73 <h2 id="activity">Add, Update, or Remove Items from the Layout</h2>
75 Now, all you need to do is add, remove, or update items in the layout

Completed in 470 milliseconds

<<21222324252627282930>>