HomeSort by relevance Sort by last modified time
    Searched refs:created (Results 76 - 100 of 496) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/webkit/browser/fileapi/
local_file_util.cc 84 base::PlatformFile* file_handle, bool* created) {
85 *created = false;
94 file_path, file_flags, file_handle, created);
105 bool* created) {
110 return NativeFileUtil::EnsureFileExists(file_path, created);
obfuscated_file_util.h 114 bool* created) OVERRIDE;
120 const FileSystemURL& url, bool* created) OVERRIDE;
332 bool* created);
  /external/valgrind/main/drd/
drd_thread.c 280 * created.
283 * @param[in] vg_created Valgrind thread ID of the created thread.
285 * @return DRD thread ID of the created thread.
290 DrdThreadId created; local
293 created = DRD_(VgThreadIdToNewDrdThreadId)(vg_created);
294 tl_assert(0 <= (int)created && created < DRD_N_THREADS
295 && created != DRD_INVALID_THREADID);
297 tl_assert(DRD_(g_threadinfo)[created].sg_first == NULL);
298 tl_assert(DRD_(g_threadinfo)[created].sg_last == NULL)
317 const DrdThreadId created = DRD_(VgThreadIdToDrdThreadId)(vg_created); local
    [all...]
  /external/chromium_org/chrome/browser/android/provider/
chrome_browser_provider.h 71 jobject created,
90 jobject created,
  /external/chromium_org/chrome/browser/history/android/
urls_sql_handler.cc 50 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::CREATED))
51 url_row.set_last_visit(row->created());
59 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
61 row->last_visit_time() == row->created()) {
64 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::CREATED))
android_history_types.h 37 CREATED,
84 void set_created(const base::Time created) {
85 set_value_explicitly(CREATED);
86 created_ = created;
88 const base::Time& created() const { function in class:history::HistoryAndBookmarkRow
  /external/chromium_org/chrome/browser/resources/chromeos/
network.js 32 * @return {DOMElement} The created span element.
47 * @return {DOMElement} The created p element that represents the log entry.
89 * @return {DOMElement} The created td element that displays the given value.
102 * @return {DOMElement} The created tr element that contains the network
  /external/chromium_org/content/test/data/indexeddb/
callback_accounting.js 23 debug("transaction created and looping");
  /external/chromium_org/third_party/ots/src/
head.cc 65 if (!table.ReadR64(&file->head->created) ||
128 !out->WriteR64(file->head->created) ||
  /external/ipsec-tools/src/racoon/
pfkey.c 2225 u_int64_t created; local
2347 u_int64_t created; local
2464 u_int64_t created; local
2540 u_int64_t created; local
2631 u_int64_t created; local
2890 u_int64_t created; local
    [all...]
handler.h 192 time_t created; /* timestamp for establish */ member in struct:ph1handle
343 time_t created; /* timestamp to create a queue */ member in struct:recvdpkt
417 time_t created; member in struct:ph1dump
schedule.c 144 time(&new->created);
259 dst->created = p->created;
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglAbstractDisplay.java 116 created.set(true);
146 if (!created.get())
LwjglOffscreenBuffer.java 87 logger.info("Offscreen buffer created.");
110 if (!created.get())
159 if (created.get()){
160 logger.warning("create() called when pbuffer is already created!");
  /libcore/luni/src/test/java/libcore/util/
BasicLruCacheTest.java 29 String created = cache.get("aa"); local
30 assertEquals("created-aa", created);
131 return (key.length() > 1) ? ("created-" + key) : null;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SynchronousContactsProvider2.java 95 boolean created = super.onCreate();
104 return created;
  /development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
NativeMedia.java 58 /** Called when the activity is first created. */
242 boolean created = false;
244 if (!created) {
253 created = createStreamingMediaPlayer(mSourceString);
256 if (created) {
  /external/chromium/base/files/
file_path_watcher_linux.cc 93 // the currently watched path for |fired_watch|. The flag |created| is true if
98 bool created,
311 bool created,
321 created,
362 (change_on_target_path && !created) ||
  /external/chromium/base/
platform_file.h 100 // |created| is provided, |created| will be set to true if the file was created
104 bool* created,
  /external/chromium_org/components/nacl/browser/
nacl_browser.h 141 base::PassPlatformFile file, bool created);
  /frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
NativeMedia.java 65 /** Called when the activity is first created. */
252 boolean created = false;
254 if (!created) {
263 created = createStreamingMediaPlayer(mSourceString);
266 if (created) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 32 self.created = 0
44 self.created += 1
55 if self.created == NUMTASKS and self.running == 0:
97 self.created = 0
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 32 self.created = 0
44 self.created += 1
55 if self.created == NUMTASKS and self.running == 0:
97 self.created = 0
  /external/chromium_org/chrome/browser/profiles/
profile_manager.h 56 // Get the profile for the user which created the current session.
96 // dir. This will return an existing profile it had already been created,
104 // If the profile has already been created then callback is called
116 // Returns the directory where the first created profile is stored,
150 // Returns created profiles. Note, profiles order is NOT guaranteed to be
170 // new profiles to be created from the multi-profile menu.
180 // prohibited. Returns the file path to the profile that will be created
207 // deleting the last profile, a new one will be created in its place, and in
267 ProfileInfo(Profile* profile, bool created);
272 // Whether profile has been fully loaded (created and initialized)
273 bool created; member in struct:ProfileManager::ProfileInfo
    [all...]
  /external/chromium_org/content/browser/fileapi/
recursive_operation_delegate_unittest.cc 158 bool created = false; local
161 url, &created));
162 EXPECT_TRUE(created);

Completed in 1455 milliseconds

1 2 34 5 6 7 8 91011>>