Home | History | Annotate | Download | only in files

Lines Matching refs:Bind

7 #include "base/bind.h"
40 base::Bind(base::IgnoreResult(close_task_), file_handle_));
233 base::Bind(&CreateOrOpenAdapter, file_path, file_flags),
234 base::Bind(&CloseAdapter),
246 Bind(&CreateTemporaryHelper::RunWork, Unretained(helper),
248 Bind(&CreateTemporaryHelper::Reply, Owned(helper), callback));
258 base::Bind(&CloseAdapter),
271 Bind(&GetFileInfoHelper::RunWorkForFilePath,
273 Bind(&GetFileInfoHelper::Reply, Owned(helper), callback));
284 Bind(&GetFileInfoHelper::RunWorkForPlatformFile,
286 Bind(&GetFileInfoHelper::Reply, Owned(helper), callback));
296 Bind(&DeleteAdapter, file_path, recursive),
313 Bind(&ReadHelper::RunWork, Unretained(helper), file, offset),
314 Bind(&ReadHelper::Reply, Owned(helper), callback));
331 Bind(&WriteHelper::RunWork, Unretained(helper), file, offset),
332 Bind(&WriteHelper::Reply, Owned(helper), callback));
345 Bind(&TouchPlatformFile, file,
347 Bind(&CallWithTranslatedParameter, callback));
360 Bind(&file_util::TouchFile, file_path,
362 Bind(&CallWithTranslatedParameter, callback));
374 Bind(&TruncatePlatformFile, file, length),
375 Bind(&CallWithTranslatedParameter, callback));
386 Bind(&FlushPlatformFile, file),
387 Bind(&CallWithTranslatedParameter, callback));
400 Bind(&CreateOrOpenHelper::RunWork, Unretained(helper), open_task),
401 Bind(&CreateOrOpenHelper::Reply, Owned(helper), callback));
411 task_runner, FROM_HERE, Bind(close_task, file_handle), callback);